UndefVar.st
changeset 148 ef0e604209ec
parent 140 1ef1d1395146
child 261 0372e948ca2d
equal deleted inserted replaced
147:9de6bea67dbf 148:ef0e604209ec
    41     variables - instead of returning nil,  the compiler returns an instance
    41     variables - instead of returning nil,  the compiler returns an instance
    42     of this class,  which will not understand ANY message.
    42     of this class,  which will not understand ANY message.
    43     The error message will then be 'UndefinedVariable ...' 
    43     The error message will then be 'UndefinedVariable ...' 
    44     instead of 'UndefineObject ...', which is somewhat more informative.
    44     instead of 'UndefineObject ...', which is somewhat more informative.
    45 "
    45 "
    46 !
       
    47 
       
    48 version
       
    49     ^ '$Header: /cvs/stx/stx/libcomp/Attic/UndefVar.st,v 1.9 1995-11-23 02:15:29 cg Exp $'
       
    50 ! !
    46 ! !
    51 
    47 
    52 !UndefinedVariable class methodsFor:'instance creation'!
    48 !UndefinedVariable class methodsFor:'instance creation'!
    53 
    49 
    54 name:aString
    50 name:aString
   136 
   132 
   137 setName:aString
   133 setName:aString
   138     name := aString
   134     name := aString
   139 ! !
   135 ! !
   140 
   136 
       
   137 !UndefinedVariable class methodsFor:'documentation'!
       
   138 
       
   139 version
       
   140     ^ '$Header: /cvs/stx/stx/libcomp/Attic/UndefVar.st,v 1.10 1995-12-03 12:14:45 cg Exp $'
       
   141 ! !