- 
- All Superinterfaces:
 StatementTree,Tree
public interface ReturnTree extends StatementTree
A tree node for a 'return' statement. For example:return; return expression;
- Since:
 - 9
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTreegetExpression()Returns the expression being returned.- 
Methods declared in interface jdk.nashorn.api.tree.Tree
accept, getEndPosition, getKind, getStartPosition 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getExpression
ExpressionTree getExpression()
Returns the expression being returned. This is null if no value is being returned. i.e., empty return statement.- Returns:
 - the returned expression
 
 
 - 
 
 -