Could Be Cascaded
Warns if a method could use cascade messages instead of multiple individual message sends.
D:\Documents\VAS Documentation Word\images\tips.gif
Cascaded statements can be faster than individual message sends. Use:
self a; b.
instead of:
self a. self b.
In some situations, a cascaded message can reduce the readability of your code. Before cascading your code, consider the effect the change will have on readability.
 
Last modified date: 05/19/2020