- All Superinterfaces:
ExpressionTree
,Tree
A tree node for an assignment expression.
For example:
variable = expression
- Since:
- 9
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the right hand side (RHS) of this assignment.Returns the left hand side (LHS) of this assignment.Methods inherited from interface org.openjdk.nashorn.api.tree.Tree
accept, getEndPosition, getKind, getStartPosition
-
Method Details
-
getVariable
ExpressionTree getVariable()Returns the left hand side (LHS) of this assignment.- Returns:
- left hand side (LHS) expression
-
getExpression
ExpressionTree getExpression()Returns the right hand side (RHS) of this assignment.- Returns:
- right hand side (RHS) expression
-