ReturnNode.st
changeset 3484 825bd64610a3
parent 3308 4c871ebd0def
child 4507 f61494fda739
equal deleted inserted replaced
3483:e86e885b0b6f 3484:825bd64610a3
    48 
    48 
    49 expression:e
    49 expression:e
    50     super expression:e.
    50     super expression:e.
    51 
    51 
    52     "/ any block, which is returned cannot be inlined.
    52     "/ any block, which is returned cannot be inlined.
    53     e isBlockNode ifTrue:[
    53     e realNode isBlockNode ifTrue:[
    54         e possiblyInlined:false
    54         e realNode possiblyInlined:false
    55     ]
    55     ]
    56 
       
    57 !
    56 !
    58 
    57 
    59 home
    58 home
    60     ^ myHome
    59     ^ myHome
    61 
    60 
   255 ! !
   254 ! !
   256 
   255 
   257 !ReturnNode class methodsFor:'documentation'!
   256 !ReturnNode class methodsFor:'documentation'!
   258 
   257 
   259 version_CVS
   258 version_CVS
   260     ^ '$Header: /cvs/stx/stx/libcomp/ReturnNode.st,v 1.44 2013-08-31 11:30:15 cg Exp $'
   259     ^ '$Header: /cvs/stx/stx/libcomp/ReturnNode.st,v 1.45 2014-06-13 10:24:03 cg Exp $'
   261 ! !
   260 ! !
   262 
   261