Package EDU.purdue.jtb.parser.syntaxtree
Class ForStatement
java.lang.Object
EDU.purdue.jtb.parser.syntaxtree.ForStatement
- All Implemented Interfaces:
INode
,Serializable
JTB node class for the production ForStatement:
Corresponding grammar:
f0 -> "for"
f1 -> "("
f2 -> ( %0 #0 VariableModifiers() #1 Type() #2 invalid input: '<' IDENTIFIER > #3 ":" #4 Expression()
.. .. | %1 #0 [ ForInit() ]
.. .. . .. #1 ";"
.. .. . .. #2 [ Expression() ]
.. .. . .. #3 ";"
.. .. . .. #4 [ ForUpdate() ] )
f3 -> ")"
f4 -> Statement()
s: 755358653
Corresponding grammar:
f0 -> "for"
f1 -> "("
f2 -> ( %0 #0 VariableModifiers() #1 Type() #2 invalid input: '<' IDENTIFIER > #3 ":" #4 Expression()
.. .. | %1 #0 [ ForInit() ]
.. .. . .. #1 ";"
.. .. . .. #2 [ Expression() ]
.. .. . .. #3 ";"
.. .. . .. #4 [ ForUpdate() ] )
f3 -> ")"
f4 -> Statement()
s: 755358653
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionChild node 0Child node 1Child node 2Child node 3Child node 4 -
Constructor Summary
ConstructorsConstructorDescriptionForStatement
(Token n0, Token n1, NodeChoice n2, Token n3, Statement n4) Constructs the node with all its children nodes. -
Method Summary
Modifier and TypeMethodDescriptionint
accept
(IIntVisitor vis) Accepts aIIntVisitor
visitor with user return data.void
accept
(IVoidVisitor vis) Accepts aIVoidVisitor
visitor} visitor with user return data.
-
Field Details
-
f0
Child node 0 -
f1
Child node 1 -
f2
Child node 2 -
f3
Child node 3 -
f4
Child node 4
-
-
Constructor Details
-
ForStatement
Constructs the node with all its children nodes.- Parameters:
n0
- - first child noden1
- - next child noden2
- - next child noden3
- - next child noden4
- - next child node
-
-
Method Details
-
accept
Accepts aIIntVisitor
visitor with user return data. -
accept
Accepts aIVoidVisitor
visitor} visitor with user return data.
-