ReturnNode.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:#ReturnNode
    13 StatementNode subclass:#ReturnNode
    14 	 instanceVariableNames:'myHome blockHome'
    14 	instanceVariableNames:'myHome blockHome'
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'System-Compiler-Support'
    17 	category:'System-Compiler-Support'
    18 !
    18 !
    19 
    19 
    20 !ReturnNode class methodsFor:'documentation'!
    20 !ReturnNode 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 return expressions
    38     node for parse-trees, representing return expressions
       
    39     This is a helper class for the compiler.
    39 "
    40 "
    40 ! !
    41 ! !
    41 
    42 
    42 !ReturnNode methodsFor:'accessing'!
    43 !ReturnNode methodsFor:'accessing'!
    43 
    44 
   156 ! !
   157 ! !
   157 
   158 
   158 !ReturnNode class methodsFor:'documentation'!
   159 !ReturnNode class methodsFor:'documentation'!
   159 
   160 
   160 version
   161 version
   161     ^ '$Header: /cvs/stx/stx/libcomp/ReturnNode.st,v 1.14 1995-12-03 12:17:14 cg Exp $'
   162     ^ '$Header: /cvs/stx/stx/libcomp/ReturnNode.st,v 1.15 1996-04-25 11:13:56 cg Exp $'
   162 ! !
   163 ! !