newly class instances defined iv kept as symbol?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

newly class instances defined iv kept as symbol?

stepharo
WebServer class
	instanceVariableNames: 'uniqueInstance'


Object class allInstVarNames
   --> "#('superclass' 'methodDict' 'format' 'layout' 'instanceVariables' 'organization' 'subclasses' 'name'
       'classPool' 'sharedPools' 'environment' 'category'      'traitComposition' 'localSelectors')"
WebServer class allInstVarNames
   -->"#('superclass' 'methodDict' 'format' 'layout 'instanceVariables' 'organization' 'subclasses' 'name'
'classPool' 'sharedPools' 'environment' 'category' 'traitComposition' 'localSelectors' #uniqueInstance)"

				
I found strange that we get a symbol. 

Stef