jtb.cparser.syntaxtree
Class CompoundStatement
Object
CompoundStatement
- All Implemented Interfaces:
- Serializable, Node
public class CompoundStatement
- extends Object
- implements Node
Grammar production:
f0 -> "{"
f1 -> [ DeclarationList() ]
f2 -> [ StatementList() ]
f3 -> "}"
- See Also:
- Serialized Form
| Methods inherited from class Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
f0
public NodeToken f0
f1
public NodeOptional f1
f2
public NodeOptional f2
f3
public NodeToken f3
CompoundStatement
public CompoundStatement(NodeToken n0,
NodeOptional n1,
NodeOptional n2,
NodeToken n3)
CompoundStatement
public CompoundStatement(NodeOptional n0,
NodeOptional n1)
accept
public void accept(Visitor v)
- Specified by:
accept in interface Node