PrimitiveNode.st
changeset 261 0372e948ca2d
parent 148 ef0e604209ec
child 263 3b21d0991eff
equal deleted inserted replaced
260:b881b17d0da6 261:0372e948ca2d
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 StatementNode subclass:#PrimitiveNode
    13 StatementNode subclass:#PrimitiveNode
    14 	 instanceVariableNames:'code primNumber optional'
    14 	instanceVariableNames:'code primNumber optional'
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'System-Compiler-Support'
    17 	category:'System-Compiler-Support'
    18 !
    18 !
    19 
    19 
    20 !PrimitiveNode class methodsFor:'documentation'!
    20 !PrimitiveNode class methodsFor:'documentation'!
    21 
    21 
    22 copyright
    22 copyright
    34 !
    34 !
    35 
    35 
    36 documentation
    36 documentation
    37 "
    37 "
    38     node for parse-trees, representing primitive code
    38     node for parse-trees, representing primitive code
       
    39     This is a helper class for the compiler.
    39 
    40 
    40     Primitives are (currently) not always supported by the incremental compiler 
    41     Primitives are (currently) not always supported by the incremental compiler 
    41     - if you want a primitive, you must use the stc-compiler and 
    42     - if you want a primitive, you must use the stc-compiler and 
    42     link a new smalltalk.
    43     link a new smalltalk.
    43 
    44 
   133 ! !
   134 ! !
   134 
   135 
   135 !PrimitiveNode class methodsFor:'documentation'!
   136 !PrimitiveNode class methodsFor:'documentation'!
   136 
   137 
   137 version
   138 version
   138     ^ '$Header: /cvs/stx/stx/libcomp/PrimitiveNode.st,v 1.13 1995-12-03 12:17:20 cg Exp $'
   139     ^ '$Header: /cvs/stx/stx/libcomp/PrimitiveNode.st,v 1.14 1996-04-25 11:14:02 cg Exp $'
   139 ! !
   140 ! !