Interface ContinueStatementTree
-
- All Superinterfaces:
StatementTree,Tree
- All Known Implementing Classes:
ContinueStatementTreeImpl
@Beta public interface ContinueStatementTree extends StatementTree
Continue Statement.continue ; continue
labelToken();
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SyntaxTokencontinueKeyword()SyntaxTokenlabelToken()SyntaxTokensemicolonToken()-
Methods inherited from interface org.sonar.plugins.javascript.api.tree.Tree
accept, childrenStream, descendants, firstToken, is, isAncestorOf, lastToken, parent
-
-
-
-
Method Detail
-
continueKeyword
SyntaxToken continueKeyword()
-
labelToken
@Nullable SyntaxToken labelToken()
-
semicolonToken
@Nullable SyntaxToken semicolonToken()
-
-