|
Class: WhileStatementNode (private in JavaScriptParser
This class is only visible from within
JavaScriptParser.
Object
|
+--ParseNode
|
+--StatementNode
|
+--JavaScriptParser::JavaScriptStatementNode
|
+--JavaScriptParser::WhileStatementNode
- Package:
- stx:libjavascript
- Category:
- Languages-JavaScript-Compiling & Parsing
- Owner:
- JavaScriptParser
accessing
-
condition
-
return the value of the instance variable 'condition' (automatically generated)
-
condition: something
-
set the value of the instance variable 'condition' (automatically generated)
-
condition: c loopStatements: l
-
-
loopStatements
-
return the value of the instance variable 'loopStatements' (automatically generated)
-
loopStatements: something
-
set the value of the instance variable 'loopStatements' (automatically generated)
compiling
-
codeForSideEffectOn: aStream inBlock: b for: aCompiler
-
always false: no code at all
enumeration
-
allSubNodesDo: aBlock
-
evaluate aBlock for each subnode
-
childrenDo: aBlock
-
evaluate aBlock for each subnode
-
messageSelectorsDo: aBlock
-
evaluate aBlock for each message-selector sent by this node and subnodes
-
messagesDo: aBlock
-
evaluate aBlock for each message-node sent by this node and subnodes
-
variableNodesDo: aBlock
-
evaluate aBlock for each variable-node in this node and subnodes
evaluation
-
evaluateExpressionIn: anEnvironment
-
printing
-
printOn: aStream indent: i
-
testing
-
isExpressionStatement
-
-
isWhileStatement
-
visiting
-
acceptVisitor: visitor
-
Double dispatch back to the visitor, passing my type encoded in
the selector (visitor pattern)
|