Uses of Interface
org.sonar.plugins.javascript.api.tree.statement.CatchBlockTree
-
Packages that use CatchBlockTree Package Description org.sonar.javascript.parser org.sonar.javascript.tree.impl.statement org.sonar.javascript.tree.symbols org.sonar.plugins.javascript.api.tree.statement Provides interfaces to represent JavaScript source code as abstract syntax trees (AST).org.sonar.plugins.javascript.api.visitors -
-
Uses of CatchBlockTree in org.sonar.javascript.parser
Methods in org.sonar.javascript.parser that return CatchBlockTree Modifier and Type Method Description CatchBlockTreeJavaScriptGrammar. CATCH_CLAUSE()CatchBlockTreeTreeFactory. newCatchBlock(InternalSyntaxToken catchToken, InternalSyntaxToken lparenToken, BindingElementTree catchParameter, InternalSyntaxToken rparenToken, BlockTree block)Methods in org.sonar.javascript.parser with parameters of type CatchBlockTree Modifier and Type Method Description TryStatementTreeTreeFactory. tryStatementWithCatch(InternalSyntaxToken tryToken, BlockTree block, CatchBlockTree catchBlock, com.sonar.sslr.api.typed.Optional<FinallyBlockTree> finallyBlockTree) -
Uses of CatchBlockTree in org.sonar.javascript.tree.impl.statement
Classes in org.sonar.javascript.tree.impl.statement that implement CatchBlockTree Modifier and Type Class Description classCatchBlockTreeImplMethods in org.sonar.javascript.tree.impl.statement that return CatchBlockTree Modifier and Type Method Description CatchBlockTreeTryStatementTreeImpl. catchBlock()Constructors in org.sonar.javascript.tree.impl.statement with parameters of type CatchBlockTree Constructor Description TryStatementTreeImpl(SyntaxToken tryKeyword, BlockTree block, CatchBlockTree catchBlock, FinallyBlockTree finallyBlock) -
Uses of CatchBlockTree in org.sonar.javascript.tree.symbols
Methods in org.sonar.javascript.tree.symbols with parameters of type CatchBlockTree Modifier and Type Method Description voidHoistedSymbolVisitor. visitCatchBlock(CatchBlockTree tree)voidScopeVisitor. visitCatchBlock(CatchBlockTree tree)voidSymbolVisitor. visitCatchBlock(CatchBlockTree tree) -
Uses of CatchBlockTree in org.sonar.plugins.javascript.api.tree.statement
Methods in org.sonar.plugins.javascript.api.tree.statement that return CatchBlockTree Modifier and Type Method Description CatchBlockTreeTryStatementTree. catchBlock() -
Uses of CatchBlockTree in org.sonar.plugins.javascript.api.visitors
Methods in org.sonar.plugins.javascript.api.visitors with parameters of type CatchBlockTree Modifier and Type Method Description voidDoubleDispatchVisitor. visitCatchBlock(CatchBlockTree tree)
-