Class TryStatementTreeImpl
- java.lang.Object
-
- org.sonar.javascript.tree.impl.JavaScriptTree
-
- org.sonar.javascript.tree.impl.statement.TryStatementTreeImpl
-
- All Implemented Interfaces:
StatementTree,TryStatementTree,Tree
public class TryStatementTreeImpl extends JavaScriptTree implements TryStatementTree
-
-
Constructor Summary
Constructors Constructor Description TryStatementTreeImpl(SyntaxToken tryKeyword, BlockTree block, CatchBlockTree catchBlock, FinallyBlockTree finallyBlock)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(DoubleDispatchVisitor visitor)BlockTreeblock()CatchBlockTreecatchBlock()Iterator<Tree>childrenIterator()Creates iterator for children of this node.FinallyBlockTreefinallyBlock()Tree.KindgetKind()SyntaxTokentryKeyword()-
Methods inherited from class org.sonar.javascript.tree.impl.JavaScriptTree
childrenStream, descendants, firstToken, is, isAncestorOf, isLeaf, lastToken, parent, setParent, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.sonar.plugins.javascript.api.tree.Tree
childrenStream, descendants, firstToken, is, isAncestorOf, lastToken, parent
-
-
-
-
Constructor Detail
-
TryStatementTreeImpl
public TryStatementTreeImpl(SyntaxToken tryKeyword, BlockTree block, @Nullable CatchBlockTree catchBlock, @Nullable FinallyBlockTree finallyBlock)
-
-
Method Detail
-
getKind
public Tree.Kind getKind()
- Specified by:
getKindin classJavaScriptTree
-
tryKeyword
public SyntaxToken tryKeyword()
- Specified by:
tryKeywordin interfaceTryStatementTree
-
block
public BlockTree block()
- Specified by:
blockin interfaceTryStatementTree
-
catchBlock
@Nullable public CatchBlockTree catchBlock()
- Specified by:
catchBlockin interfaceTryStatementTree
-
finallyBlock
@Nullable public FinallyBlockTree finallyBlock()
- Specified by:
finallyBlockin interfaceTryStatementTree
-
childrenIterator
public Iterator<Tree> childrenIterator()
Description copied from class:JavaScriptTreeCreates iterator for children of this node. Note that iterator may containnullelements.- Specified by:
childrenIteratorin classJavaScriptTree
-
accept
public void accept(DoubleDispatchVisitor visitor)
-
-