Accessible Objects
AccessibleObject methods for: accessing
at: key
"Return the object associated with the given key..."
^self valueAt: key
at: key put: value
"Store the indicated value at the designated place in our item
dictionary... "
^self valueAt: key put: value
size
"Let's say our size is the size of our item dictionary
plus our number of instance variables..."
^self items size + self instVarNames size