UndefObj.st
changeset 2 6526dde5f3ac
parent 1 a27a279701f8
child 3 24d81bf47225
equal deleted inserted replaced
1:a27a279701f8 2:6526dde5f3ac
   138 storeString
   138 storeString
   139     "return a string for storing myself"
   139     "return a string for storing myself"
   140 
   140 
   141     ^ 'nil'
   141     ^ 'nil'
   142 ! !
   142 ! !
       
   143 
       
   144 !UndefinedObject methodsFor:'binary storage'!
       
   145 
       
   146 hasSpecialBinaryRepresentation
       
   147     ^ true
       
   148 !
       
   149 
       
   150 storeBinaryOn: stream manager: manager
       
   151     stream nextPut: (manager codeForNil)
       
   152 ! !