Interface TryStatementTree
-
- All Superinterfaces:
StatementTree,Tree
- All Known Implementing Classes:
TryStatementTreeImpl
@Beta public interface TryStatementTree extends StatementTree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockTreeblock()CatchBlockTreecatchBlock()FinallyBlockTreefinallyBlock()SyntaxTokentryKeyword()-
Methods inherited from interface org.sonar.plugins.javascript.api.tree.Tree
accept, childrenStream, descendants, firstToken, is, isAncestorOf, lastToken, parent
-
-
-
-
Method Detail
-
tryKeyword
SyntaxToken tryKeyword()
-
block
BlockTree block()
-
catchBlock
@Nullable CatchBlockTree catchBlock()
-
finallyBlock
@Nullable FinallyBlockTree finallyBlock()
-
-