Spaces:
Running
Running
File size: 343 Bytes
8f3f8db |
1 2 3 4 5 6 7 8 9 10 |
inlining support
computePossibleSideEffectsIn: aCodeGen
"Answer true if this method may have side effects. It has side effects if it assigns to a global variable. It may have side effects if it calls a non-built-in method."
parseTree nodesDo: [ :node |
node isSend ifTrue: [
node isBuiltinOperator ifFalse: [ ^true ].
].
].
^ false |