Interface | Description |
---|---|
Node |
An AST node.
|
Statements |
Represents one or more groups of
Statement s. |
Class | Description |
---|---|
BaseNode |
A simple base class for implementing an AST
Node . |
Expression |
A
Node that represents a Java expression. |
ForLoop |
A kind of
Statements that represents a for loop. |
MethodCall |
An
Expression that represents a method call, for example,
foo( a, b, c ) . |
Statement |
A
Node that represents a single Java statement. |
StatementsList |
An implementation of
Statements that is composed of a list of
Statements . |
WhileLoop |
A Node that represents a Java
while loop. |
Copyright © 2018. All rights reserved.