StatementNode.st
changeset 2103 7eab888fb15a
parent 2065 974a231dff97
child 2168 be3e52955e96
equal deleted inserted replaced
2102:0d60bf6818d7 2103:7eab888fb15a
   260 isSimpleConstant
   260 isSimpleConstant
   261     nextStatement notNil ifTrue:[^ false].
   261     nextStatement notNil ifTrue:[^ false].
   262     ^ expression isConstant
   262     ^ expression isConstant
   263 !
   263 !
   264 
   264 
       
   265 isSimpleExpression
       
   266     nextStatement notNil ifTrue:[^ false].
       
   267     ^ expression notNil
       
   268 !
       
   269 
   265 isSimpleVariable
   270 isSimpleVariable
   266     nextStatement notNil ifTrue:[^ false].
   271     nextStatement notNil ifTrue:[^ false].
   267     ^ expression isVariable
   272     ^ expression isVariable
   268 !
   273 !
   269 
   274 
   282 ! !
   287 ! !
   283 
   288 
   284 !StatementNode class methodsFor:'documentation'!
   289 !StatementNode class methodsFor:'documentation'!
   285 
   290 
   286 version
   291 version
   287     ^ '$Header: /cvs/stx/stx/libcomp/StatementNode.st,v 1.34 2008-01-24 13:50:04 cg Exp $'
   292     ^ '$Header: /cvs/stx/stx/libcomp/StatementNode.st,v 1.35 2008-07-25 12:45:46 cg Exp $'
   288 ! !
   293 ! !