Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Named instance variables
Last updated at 7:26 pm UTC on 24 July 2018
Variables are defined in a class definition, a template follows:

Object subclass: #NameOfSubclass
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: ''

Scope

Named instance variables may be referenced in
  1. instance methods of the defining class
  2. instance methods of any sub-classes of the defining class


Rules



Notes