ConstantNode.st
changeset 1787 b45a0ee243ae
parent 1560 a3be357f8c4d
child 1794 f0871e87c14a
equal deleted inserted replaced
1786:59c642a17b3d 1787:b45a0ee243ae
   135 !ConstantNode methodsFor:'accessing'!
   135 !ConstantNode methodsFor:'accessing'!
   136 
   136 
   137 lineNumber:ignoredLineNumber
   137 lineNumber:ignoredLineNumber
   138 
   138 
   139     "Created: / 14.5.1998 / 19:31:48 / cg"
   139     "Created: / 14.5.1998 / 19:31:48 / cg"
   140 !
       
   141 
       
   142 type:t value:val
       
   143     type := t.
       
   144     value := val
       
   145 !
       
   146 
       
   147 value:val
       
   148     value := val
       
   149 ! !
   140 ! !
   150 
   141 
   151 !ConstantNode methodsFor:'code generation'!
   142 !ConstantNode methodsFor:'code generation'!
   152 
   143 
   153 codeForSideEffectOn:aStream inBlock:b for:aCompiler
   144 codeForSideEffectOn:aStream inBlock:b for:aCompiler
   345 ! !
   336 ! !
   346 
   337 
   347 !ConstantNode class methodsFor:'documentation'!
   338 !ConstantNode class methodsFor:'documentation'!
   348 
   339 
   349 version
   340 version
   350     ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.36 2004-11-25 09:09:22 cg Exp $'
   341     ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.37 2006-08-07 10:20:10 cg Exp $'
   351 ! !
   342 ! !