Package EDU.purdue.jtb.parser.syntaxtree
Class IfStatement
- java.lang.Object
-
- EDU.purdue.jtb.parser.syntaxtree.IfStatement
-
- All Implemented Interfaces:
INode
,java.io.Serializable
public class IfStatement extends java.lang.Object implements INode
JTB node class for the production IfStatement:
Corresponding grammar:
f0 -> "if"
f1 -> "("
f2 -> Expression()
f3 -> ")"
f4 -> Statement()
f5 -> [ #0 "else" #1 Statement() ]
s: -1906079982- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IfStatement(Token n0, Token n1, Expression n2, Token n3, Statement n4, NodeOptional n5)
Constructs the node with all its children nodes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
accept(IIntVisitor vis)
Accepts aIIntVisitor
visitor with user return data.void
accept(IVoidVisitor vis)
Accepts aIVoidVisitor
visitor} visitor with user return data.
-
-
-
Field Detail
-
f0
public Token f0
Child node 0
-
f1
public Token f1
Child node 1
-
f2
public Expression f2
Child node 2
-
f3
public Token f3
Child node 3
-
f4
public Statement f4
Child node 4
-
f5
public NodeOptional f5
Child node 5
-
-
Constructor Detail
-
IfStatement
public IfStatement(Token n0, Token n1, Expression n2, Token n3, Statement n4, NodeOptional n5)
Constructs the node with all its children nodes.- Parameters:
n0
- - first child noden1
- - next child noden2
- - next child noden3
- - next child noden4
- - next child noden5
- - next child node
-
-
Method Detail
-
accept
public int accept(IIntVisitor vis)
Accepts aIIntVisitor
visitor with user return data.
-
accept
public void accept(IVoidVisitor vis)
Accepts aIVoidVisitor
visitor} visitor with user return data.
-
-