Interface ForInLoopTree
- All Superinterfaces:
LoopTree, StatementTree, Tree
A tree node for for..in statement
For example:
for ( variable in expression )
statement
- Since:
- 9
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionThe object or array being whose properties are iterated.The statement contained in this for..in statement.The for..in left hand side expression.booleanReturns if this is a for..each..in statement or not.Methods inherited from interface Tree
accept, getEndPosition, getKind, getStartPosition
-
Method Details
-
getVariable
ExpressionTree getVariable()The for..in left hand side expression.- Returns:
- the left hand side expression
-
getExpression
ExpressionTree getExpression()The object or array being whose properties are iterated.- Returns:
- the object or array expression being iterated
-
getStatement
StatementTree getStatement()The statement contained in this for..in statement.- Specified by:
getStatementin interfaceLoopTree- Returns:
- the statement
-
isForEach
boolean isForEach()Returns if this is a for..each..in statement or not.- Returns:
- true if this is a for..each..in statement
-