Uses of Interface
org.sonar.plugins.javascript.api.tree.expression.ArgumentListTree
-
Packages that use ArgumentListTree Package Description org.sonar.javascript.parser org.sonar.javascript.tree.impl.declaration org.sonar.javascript.tree.impl.expression org.sonar.plugins.javascript.api.tree.declaration Provides interfaces to represent JavaScript source code as abstract syntax trees (AST).org.sonar.plugins.javascript.api.tree.expression Provides interfaces to represent JavaScript source code as abstract syntax trees (AST).org.sonar.plugins.javascript.api.visitors -
-
Uses of ArgumentListTree in org.sonar.javascript.parser
Methods in org.sonar.javascript.parser that return ArgumentListTree Modifier and Type Method Description ArgumentListTreeJavaScriptGrammar. ARGUMENT_CLAUSE()ArgumentListTreeTreeFactory. argumentClause(InternalSyntaxToken openParenToken, com.sonar.sslr.api.typed.Optional<SeparatedList<ExpressionTree>> arguments, InternalSyntaxToken closeParenToken)Methods in org.sonar.javascript.parser with parameters of type ArgumentListTree Modifier and Type Method Description org.sonar.javascript.parser.TreeFactory.ArgumentsTailTreeFactory. argumentClauseTail(ArgumentListTree argumentListTree)NewExpressionTreeTreeFactory. newExpressionWithArgument(InternalSyntaxToken newToken, ExpressionTree expression, ArgumentListTree arguments)CallExpressionTreeTreeFactory. simpleCallExpression(ExpressionTree expression, ArgumentListTree arguments) -
Uses of ArgumentListTree in org.sonar.javascript.tree.impl.declaration
Methods in org.sonar.javascript.tree.impl.declaration that return ArgumentListTree Modifier and Type Method Description ArgumentListTreeDecoratorTreeImpl. argumentClause()Constructors in org.sonar.javascript.tree.impl.declaration with parameters of type ArgumentListTree Constructor Description DecoratorTreeImpl(SyntaxToken atToken, SeparatedList<IdentifierTree> body, ArgumentListTree arguments) -
Uses of ArgumentListTree in org.sonar.javascript.tree.impl.expression
Classes in org.sonar.javascript.tree.impl.expression that implement ArgumentListTree Modifier and Type Class Description classArgumentListTreeImplMethods in org.sonar.javascript.tree.impl.expression that return ArgumentListTree Modifier and Type Method Description ArgumentListTreeCallExpressionTreeImpl. argumentClause()ArgumentListTreeNewExpressionTreeImpl. argumentClause()Constructors in org.sonar.javascript.tree.impl.expression with parameters of type ArgumentListTree Constructor Description CallExpressionTreeImpl(ExpressionTree callee, ArgumentListTree arguments)NewExpressionTreeImpl(Tree.Kind kind, InternalSyntaxToken newKeyword, ExpressionTree expression, ArgumentListTree arguments) -
Uses of ArgumentListTree in org.sonar.plugins.javascript.api.tree.declaration
Methods in org.sonar.plugins.javascript.api.tree.declaration that return ArgumentListTree Modifier and Type Method Description ArgumentListTreeDecoratorTree. argumentClause() -
Uses of ArgumentListTree in org.sonar.plugins.javascript.api.tree.expression
Methods in org.sonar.plugins.javascript.api.tree.expression that return ArgumentListTree Modifier and Type Method Description ArgumentListTreeCallExpressionTree. argumentClause()ArgumentListTreeNewExpressionTree. argumentClause() -
Uses of ArgumentListTree in org.sonar.plugins.javascript.api.visitors
Methods in org.sonar.plugins.javascript.api.visitors with parameters of type ArgumentListTree Modifier and Type Method Description voidDoubleDispatchVisitor. visitArgumentList(ArgumentListTree tree)
-