Interface CatchBlockTree
-
- All Superinterfaces:
Tree
- All Known Implementing Classes:
CatchBlockTreeImpl
@Beta public interface CatchBlockTree extends Tree
Catch Block.catch (
parameter())block()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockTreeblock()SyntaxTokencatchKeyword()SyntaxTokencloseParenthesisToken()SyntaxTokenopenParenthesisToken()Treeparameter()-
Methods inherited from interface org.sonar.plugins.javascript.api.tree.Tree
accept, childrenStream, descendants, firstToken, is, isAncestorOf, lastToken, parent
-
-
-
-
Method Detail
-
catchKeyword
SyntaxToken catchKeyword()
-
openParenthesisToken
SyntaxToken openParenthesisToken()
-
parameter
Tree parameter()
-
closeParenthesisToken
SyntaxToken closeParenthesisToken()
-
block
BlockTree block()
-
-