-
- All Superinterfaces:
StatementTree
,Tree
public interface ExpressionStatementTree extends StatementTree
A tree node for an expression statement. For example:expression ;
- Since:
- 9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTree
getExpression()
Returns the expression of this expression statement.-
Methods inherited from interface jdk.nashorn.api.tree.Tree
accept, getEndPosition, getKind, getStartPosition
-
-
-
-
Method Detail
-
getExpression
ExpressionTree getExpression()
Returns the expression of this expression statement.- Returns:
- the expression
-
-