|
Class: IncDecNode (private in JavaScriptParser
This class is only visible from within
JavaScriptParser.
Object
|
+--ParseNode
|
+--PrimaryNode
|
+--JavaScriptParser::IncDecNode
|
+--JavaScriptParser::PostIncDecNode
|
+--JavaScriptParser::PreIncDecNode
- Package:
- stx:libjavascript
- Category:
- Languages-JavaScript-Compiling & Parsing
- Owner:
- JavaScriptParser
accessing
-
isInc
-
return the value of the instance variable 'isInc' (automatically generated)
-
isInc: something
-
set the value of the instance variable 'isInc' (automatically generated)
-
lValue
-
return the value of the instance variable 'lValue' (automatically generated)
-
lValue: something
-
set the value of the instance variable 'lValue' (automatically generated)
compiling
-
codeForSideEffectOn: aStream inBlock: b for: aCompiler
-
(comment from inherited method)
generate code for this statement - value not needed
** This method must be redefined in concrete classes (subclassResponsibility) **
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-selector sent by this node and subnodes
-
variableNodesDo: aBlock
-
evaluate aBlock for each variable-node in this node and subnodes
evaluation
-
evaluateIn: anEnvironment
-
** This method must be redefined in concrete classes (subclassResponsibility) **
visiting
-
acceptVisitor: visitor
-
Double dispatch back to the visitor, passing my type encoded in
the selector (visitor pattern)
|