Missing #yourself
Warns if an expression is missing #yourself.
D:\Documents\VAS Documentation Word\images\tips.gif
In an assignment statement (:=), the message #yourself is often forgotten at the end of an instance creation followed by several cascaded messages. Use:
aCollection := OrderedCollection new add: a; add: b; yourself
and not:
aCollection := OrderedCollection new add: a; add: b.
 
Last modified date: 05/19/2020