Class ContinueStatementTreeImpl
java.lang.Object
org.sonar.php.tree.impl.PHPTree
org.sonar.php.tree.impl.statement.ContinueStatementTreeImpl
- All Implemented Interfaces:
ContinueStatementTree
,StatementTree
,Tree
-
Nested Class Summary
-
Constructor Summary
ConstructorsConstructorDescriptionContinueStatementTreeImpl
(InternalSyntaxToken continueToken, ExpressionTree argument, InternalSyntaxToken eosToken) -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(VisitorCheck visitor) argument()
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
-
ContinueStatementTreeImpl
public ContinueStatementTreeImpl(InternalSyntaxToken continueToken, @Nullable ExpressionTree argument, InternalSyntaxToken eosToken)
-
-
Method Details
-
continueToken
- Specified by:
continueToken
in interfaceContinueStatementTree
-
argument
- Specified by:
argument
in interfaceContinueStatementTree
-
eosToken
- Specified by:
eosToken
in interfaceContinueStatementTree
-
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
-
accept
-