Uses of Interface
org.sonar.plugins.javascript.api.tree.expression.FunctionExpressionTree
-
-
Uses of FunctionExpressionTree in org.sonar.javascript.parser
Methods in org.sonar.javascript.parser that return FunctionExpressionTree Modifier and Type Method Description FunctionExpressionTreeJavaScriptGrammar. FUNCTION_EXPRESSION()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)FunctionExpressionTreeJavaScriptGrammar. GENERATOR_EXPRESSION()ECMAScript 6FunctionExpressionTreeTreeFactory. 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) -
Uses of FunctionExpressionTree in org.sonar.javascript.tree.impl.expression
Classes in org.sonar.javascript.tree.impl.expression that implement FunctionExpressionTree Modifier and Type Class Description classFunctionExpressionTreeImplMethods in org.sonar.javascript.tree.impl.expression that return FunctionExpressionTree 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 FunctionExpressionTree in org.sonar.javascript.tree.symbols
Methods in org.sonar.javascript.tree.symbols with parameters of type FunctionExpressionTree Modifier and Type Method Description voidHoistedSymbolVisitor. visitFunctionExpression(FunctionExpressionTree tree)voidScopeVisitor. visitFunctionExpression(FunctionExpressionTree tree)voidSymbolVisitor. visitFunctionExpression(FunctionExpressionTree tree) -
Uses of FunctionExpressionTree in org.sonar.javascript.tree.symbols.type
Methods in org.sonar.javascript.tree.symbols.type with parameters of type FunctionExpressionTree Modifier and Type Method Description voidTypeVisitor. visitFunctionExpression(FunctionExpressionTree tree) -
Uses of FunctionExpressionTree in org.sonar.plugins.javascript.api.visitors
Methods in org.sonar.plugins.javascript.api.visitors with parameters of type FunctionExpressionTree Modifier and Type Method Description voidDoubleDispatchVisitor. visitFunctionExpression(FunctionExpressionTree tree)
-