Uses of Interface
org.sonar.plugins.javascript.api.tree.statement.SwitchClauseTree
-
Packages that use SwitchClauseTree Package Description org.sonar.javascript.parser org.sonar.javascript.tree.impl.statement org.sonar.plugins.javascript.api.tree.statement Provides interfaces to represent JavaScript source code as abstract syntax trees (AST). -
-
Uses of SwitchClauseTree in org.sonar.javascript.parser
Methods in org.sonar.javascript.parser that return types with arguments of type SwitchClauseTree Modifier and Type Method Description List<SwitchClauseTree>JavaScriptGrammar. SWITCH_CASES()List<SwitchClauseTree>TreeFactory. switchCases(com.sonar.sslr.api.typed.Optional<List<SwitchClauseTree>> switchCases)Method parameters in org.sonar.javascript.parser with type arguments of type SwitchClauseTree Modifier and Type Method Description List<SwitchClauseTree>TreeFactory. switchCases(com.sonar.sslr.api.typed.Optional<List<SwitchClauseTree>> switchCases)SwitchStatementTreeTreeFactory. switchStatement(InternalSyntaxToken switchToken, InternalSyntaxToken openParenthesis, ExpressionTree expression, InternalSyntaxToken closeParenthesis, InternalSyntaxToken openCurly, com.sonar.sslr.api.typed.Optional<List<SwitchClauseTree>> switchCases, InternalSyntaxToken closeCurly) -
Uses of SwitchClauseTree in org.sonar.javascript.tree.impl.statement
Classes in org.sonar.javascript.tree.impl.statement that implement SwitchClauseTree Modifier and Type Class Description classCaseClauseTreeImplclassDefaultClauseTreeImplMethods in org.sonar.javascript.tree.impl.statement that return types with arguments of type SwitchClauseTree Modifier and Type Method Description List<SwitchClauseTree>SwitchStatementTreeImpl. cases()Constructor parameters in org.sonar.javascript.tree.impl.statement with type arguments of type SwitchClauseTree Constructor Description SwitchStatementTreeImpl(SyntaxToken switchKeyword, SyntaxToken openParenthesis, ExpressionTree expression, SyntaxToken closeParenthesis, SyntaxToken openCurlyBrace, List<SwitchClauseTree> cases, SyntaxToken closeCurlyBrace) -
Uses of SwitchClauseTree in org.sonar.plugins.javascript.api.tree.statement
Subinterfaces of SwitchClauseTree in org.sonar.plugins.javascript.api.tree.statement Modifier and Type Interface Description interfaceCaseClauseTreeinterfaceDefaultClauseTreeMethods in org.sonar.plugins.javascript.api.tree.statement that return types with arguments of type SwitchClauseTree Modifier and Type Method Description List<SwitchClauseTree>SwitchStatementTree. cases()
-