Uses of Interface
org.sonar.plugins.javascript.api.tree.expression.LiteralTree
-
Packages that use LiteralTree Package Description org.sonar.javascript.parser org.sonar.javascript.se.sv org.sonar.javascript.tree.impl.declaration org.sonar.javascript.tree.impl.expression org.sonar.javascript.tree.symbols.type org.sonar.plugins.javascript.api.tree.declaration Provides interfaces to represent JavaScript source code as abstract syntax trees (AST).org.sonar.plugins.javascript.api.visitors -
-
Uses of LiteralTree in org.sonar.javascript.parser
Methods in org.sonar.javascript.parser that return LiteralTree Modifier and Type Method Description LiteralTreeTreeFactory. booleanLiteral(InternalSyntaxToken trueFalseToken)LiteralTreeJavaScriptGrammar. LITERAL()A.3 ExpressionsLiteralTreeTreeFactory. nullLiteral(InternalSyntaxToken nullToken)LiteralTreeJavaScriptGrammar. NUMERIC_LITERAL()LiteralTreeTreeFactory. numericLiteral(InternalSyntaxToken numericToken)LiteralTreeTreeFactory. regexpLiteral(InternalSyntaxToken regexpToken)LiteralTreeJavaScriptGrammar. STRING_LITERAL()LiteralTreeTreeFactory. stringLiteral(InternalSyntaxToken stringToken)Methods in org.sonar.javascript.parser with parameters of type LiteralTree Modifier and Type Method Description FromClauseTreeTreeFactory. fromClause(InternalSyntaxToken fromToken, LiteralTree module)ImportModuleDeclarationTreeTreeFactory. importModuleDeclaration(InternalSyntaxToken importToken, LiteralTree moduleName, Tree semicolonToken) -
Uses of LiteralTree in org.sonar.javascript.se.sv
Methods in org.sonar.javascript.se.sv that return LiteralTree Modifier and Type Method Description LiteralTreeLiteralSymbolicValue. getLiteral()Methods in org.sonar.javascript.se.sv with parameters of type LiteralTree Modifier and Type Method Description static SymbolicValueLiteralSymbolicValue. get(LiteralTree literal) -
Uses of LiteralTree in org.sonar.javascript.tree.impl.declaration
Methods in org.sonar.javascript.tree.impl.declaration that return LiteralTree Modifier and Type Method Description LiteralTreeFromClauseTreeImpl. module()LiteralTreeImportModuleDeclarationTreeImpl. moduleName()Constructors in org.sonar.javascript.tree.impl.declaration with parameters of type LiteralTree Constructor Description FromClauseTreeImpl(InternalSyntaxToken fromToken, LiteralTree module)ImportModuleDeclarationTreeImpl(InternalSyntaxToken importToken, LiteralTree moduleName, SyntaxToken semicolonToken) -
Uses of LiteralTree in org.sonar.javascript.tree.impl.expression
Classes in org.sonar.javascript.tree.impl.expression that implement LiteralTree Modifier and Type Class Description classLiteralTreeImpl -
Uses of LiteralTree in org.sonar.javascript.tree.symbols.type
Methods in org.sonar.javascript.tree.symbols.type with parameters of type LiteralTree Modifier and Type Method Description voidTypeVisitor. visitLiteral(LiteralTree tree) -
Uses of LiteralTree in org.sonar.plugins.javascript.api.tree.declaration
Methods in org.sonar.plugins.javascript.api.tree.declaration that return LiteralTree Modifier and Type Method Description LiteralTreeFromClauseTree. module()LiteralTreeImportModuleDeclarationTree. moduleName() -
Uses of LiteralTree in org.sonar.plugins.javascript.api.visitors
Methods in org.sonar.plugins.javascript.api.visitors with parameters of type LiteralTree Modifier and Type Method Description voidDoubleDispatchVisitor. visitLiteral(LiteralTree tree)
-