Uses of Interface
org.sonar.plugins.javascript.api.tree.declaration.ParameterListTree
-
Packages that use ParameterListTree 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 ParameterListTree in org.sonar.javascript.parser
Methods in org.sonar.javascript.parser that return ParameterListTree Modifier and Type Method Description ParameterListTreeJavaScriptGrammar. FORMAL_PARAMETER_CLAUSE()ParameterListTreeTreeFactory. formalParameterClause1(InternalSyntaxToken lParenthesis, SeparatedList<BindingElementTree> parameters, com.sonar.sslr.api.typed.Optional<InternalSyntaxToken> trailingComma, InternalSyntaxToken rParenthesis)ParameterListTreeTreeFactory. formalParameterClause2(InternalSyntaxToken lParenthesis, SeparatedList<BindingElementTree> parameters, InternalSyntaxToken comma, RestElementTree restElementTree, InternalSyntaxToken rParenthesis)ParameterListTreeTreeFactory. formalParameterClause3(InternalSyntaxToken lParenthesis, com.sonar.sslr.api.typed.Optional<RestElementTree> restElementTree, InternalSyntaxToken rParenthesis)Methods in org.sonar.javascript.parser with parameters of type ParameterListTree Modifier and Type Method Description AccessorMethodDeclarationTreeTreeFactory. accessor(com.sonar.sslr.api.typed.Optional<List<DecoratorTree>> decorators, com.sonar.sslr.api.typed.Optional<InternalSyntaxToken> staticToken, InternalSyntaxToken accessorToken, Tree name, com.sonar.sslr.api.typed.Optional<FlowGenericParameterClauseTree> genericParameterClause, ParameterListTree parameters, com.sonar.sslr.api.typed.Optional<FlowTypeAnnotationTree> returnType, BlockTree body)FunctionDeclarationTreeTreeFactory. functionAndGeneratorDeclaration(com.sonar.sslr.api.typed.Optional<InternalSyntaxToken> asyncToken, InternalSyntaxToken functionToken, com.sonar.sslr.api.typed.Optional<InternalSyntaxToken> starToken, IdentifierTree name, com.sonar.sslr.api.typed.Optional<FlowGenericParameterClauseTree> genericParameterClause, ParameterListTree parameters, com.sonar.sslr.api.typed.Optional<FlowTypeAnnotationTree> returnType, BlockTree body)FunctionExpressionTreeTreeFactory. functionExpression(com.sonar.sslr.api.typed.Optional<InternalSyntaxToken> asyncToken, InternalSyntaxToken functionKeyword, com.sonar.sslr.api.typed.Optional<IdentifierTree> functionName, com.sonar.sslr.api.typed.Optional<FlowGenericParameterClauseTree> genericParameterClause, ParameterListTree parameters, com.sonar.sslr.api.typed.Optional<FlowTypeAnnotationTree> returnType, BlockTree body)FunctionExpressionTreeTreeFactory. generatorExpression(InternalSyntaxToken functionKeyword, InternalSyntaxToken starOperator, com.sonar.sslr.api.typed.Optional<IdentifierTree> functionName, com.sonar.sslr.api.typed.Optional<FlowGenericParameterClauseTree> genericParameterClause, ParameterListTree parameters, com.sonar.sslr.api.typed.Optional<FlowTypeAnnotationTree> returnType, BlockTree body)MethodDeclarationTreeTreeFactory. generatorMethod(com.sonar.sslr.api.typed.Optional<List<DecoratorTree>> decorators, com.sonar.sslr.api.typed.Optional<InternalSyntaxToken> staticToken, InternalSyntaxToken starToken, Tree name, com.sonar.sslr.api.typed.Optional<FlowGenericParameterClauseTree> genericParameterClause, ParameterListTree parameters, com.sonar.sslr.api.typed.Optional<FlowTypeAnnotationTree> returnType, BlockTree body)MethodDeclarationTreeTreeFactory. method(com.sonar.sslr.api.typed.Optional<List<DecoratorTree>> decorators, com.sonar.sslr.api.typed.Optional<InternalSyntaxToken> staticToken, com.sonar.sslr.api.typed.Optional<InternalSyntaxToken> asyncToken, Tree name, com.sonar.sslr.api.typed.Optional<FlowGenericParameterClauseTree> genericParameterClause, ParameterListTree parameters, com.sonar.sslr.api.typed.Optional<FlowTypeAnnotationTree> returnType, BlockTree body) -
Uses of ParameterListTree in org.sonar.javascript.tree.impl.declaration
Classes in org.sonar.javascript.tree.impl.declaration that implement ParameterListTree Modifier and Type Class Description classParameterListTreeImplMethods in org.sonar.javascript.tree.impl.declaration that return ParameterListTree Modifier and Type Method Description ParameterListTreeAccessorMethodDeclarationTreeImpl. parameterClause()ParameterListTreeFunctionDeclarationTreeImpl. parameterClause()ParameterListTreeMethodDeclarationTreeImpl. parameterClause()Constructors in org.sonar.javascript.tree.impl.declaration with parameters of type ParameterListTree Constructor Description AccessorMethodDeclarationTreeImpl(List<DecoratorTree> decorators, InternalSyntaxToken staticToken, InternalSyntaxToken accessorToken, Tree name, FlowGenericParameterClauseTree genericParameterClause, ParameterListTree parameters, FlowTypeAnnotationTree returnType, BlockTree body) -
Uses of ParameterListTree in org.sonar.javascript.tree.impl.expression
Methods in org.sonar.javascript.tree.impl.expression that return ParameterListTree Modifier and Type Method Description ParameterListTreeFunctionExpressionTreeImpl. parameterClause()Methods in org.sonar.javascript.tree.impl.expression with parameters of type ParameterListTree Modifier and Type Method Description static FunctionExpressionTreeFunctionExpressionTreeImpl. create(SyntaxToken asyncToken, SyntaxToken functionToken, IdentifierTree name, FlowGenericParameterClauseTree genericParameterClause, ParameterListTree parameters, FlowTypeAnnotationTree returnType, BlockTree body)static FunctionExpressionTreeFunctionExpressionTreeImpl. createGenerator(SyntaxToken functionKeyword, SyntaxToken star, IdentifierTree name, FlowGenericParameterClauseTree genericParameterClause, ParameterListTree parameters, FlowTypeAnnotationTree returnType, BlockTree body) -
Uses of ParameterListTree in org.sonar.plugins.javascript.api.tree.declaration
Methods in org.sonar.plugins.javascript.api.tree.declaration that return ParameterListTree Modifier and Type Method Description ParameterListTreeAccessorMethodDeclarationTree. parameterClause()ParameterListTreeFunctionDeclarationTree. parameterClause()ParameterListTreeMethodDeclarationTree. parameterClause() -
Uses of ParameterListTree in org.sonar.plugins.javascript.api.tree.expression
Methods in org.sonar.plugins.javascript.api.tree.expression that return ParameterListTree Modifier and Type Method Description ParameterListTreeFunctionExpressionTree. parameterClause() -
Uses of ParameterListTree in org.sonar.plugins.javascript.api.visitors
Methods in org.sonar.plugins.javascript.api.visitors with parameters of type ParameterListTree Modifier and Type Method Description voidDoubleDispatchVisitor. visitParameterList(ParameterListTree tree)
-