Class UnsetVariableStatementTreeImpl
java.lang.Object
org.sonar.php.tree.impl.PHPTree
org.sonar.php.tree.impl.statement.UnsetVariableStatementTreeImpl
- All Implemented Interfaces:
StatementTree
,UnsetVariableStatementTree
,Tree
-
Nested Class Summary
-
Constructor Summary
ConstructorsConstructorDescriptionUnsetVariableStatementTreeImpl
(InternalSyntaxToken unsetToken, InternalSyntaxToken openParenthesisToken, SeparatedListImpl<ExpressionTree> variables, InternalSyntaxToken closeParenthesisToken, InternalSyntaxToken eosToken) -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(VisitorCheck visitor) Creates iterator for children of this node.eosToken()
getKind()
Methods inherited from class org.sonar.php.tree.impl.PHPTree
getFirstToken, getLastToken, getLine, getParent, is, isLeaf, setParent, toString
-
Constructor Details
-
UnsetVariableStatementTreeImpl
public UnsetVariableStatementTreeImpl(InternalSyntaxToken unsetToken, InternalSyntaxToken openParenthesisToken, SeparatedListImpl<ExpressionTree> variables, InternalSyntaxToken closeParenthesisToken, InternalSyntaxToken eosToken)
-
-
Method Details
-
getKind
-
childrenIterator
Description copied from class:PHPTree
Creates iterator for children of this node. Note that iterator may containnull
elements.- Specified by:
childrenIterator
in classPHPTree
-
unsetToken
- Specified by:
unsetToken
in interfaceUnsetVariableStatementTree
-
openParenthesisToken
- Specified by:
openParenthesisToken
in interfaceUnsetVariableStatementTree
-
variables
- Specified by:
variables
in interfaceUnsetVariableStatementTree
-
closeParenthesisToken
- Specified by:
closeParenthesisToken
in interfaceUnsetVariableStatementTree
-
eosToken
- Specified by:
eosToken
in interfaceUnsetVariableStatementTree
-
accept
-