Category:Smalltalk: Difference between revisions

Content added Content deleted
Line 383: Line 383:


===Special "builtin" Pseudo Variables===
===Special "builtin" Pseudo Variables===
<lang smalltalk>self "refers to the current receiver"
<lang smalltalk>
self "refers to the current receiver"


super "for super sends"
super "for super sends (to call the method in a superclass)"


thisContext "refers to the current context (stack frame/continuation) as an object"</lang>
thisContext "refers to the current context (stack frame/continuation) as an object"</lang>


===Message Sends===
===Message Sends===