MSIR.0797 No method linking for implied object

From m204wiki
Revision as of 15:01, 9 November 2010 by 198.242.244.47 (talk) (Created page with "A method with an implied object or class was specified, and was followed by another method. This is not allowed.<pre> For example, in the following:<pre> %list is object stringLi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A method with an implied object or class was specified, and was followed by another method. This is not allowed.

 For example, in the following:<pre> %list is object stringList ... %list = new
 the new method, has an implied class (stringList) and is treated the same as if the class was made explicit:<pre> %list is object stringList ... %list = %(stringList):new

However, when the implied class or object syntax is used, a subsequent method cannot be linked to the previous method.

 The following, for example, is invalid:<pre> %list is object stringList ... %list = new:sort('1,10,A')

Values of an enumeration are considered shared members of the class so are subject to this restriction, too.

 In the odd cases where one might wish to perform another method on the result of a method with an implied class or object, simply split the two methods into two statements:<pre> %list is object stringList ... %list = new %list = %list:sort('1,10,A')

While, perhaps slightly inconvenient, this has no negative performance impact. The above example is, of course, silly, as there's no point in sorting a new, and so empty, StringList.