Uses of Interface
org.sonar.plugins.javascript.api.tree.declaration.FunctionDeclarationTree
-
-
Uses of FunctionDeclarationTree in org.sonar.javascript.parser
Methods in org.sonar.javascript.parser that return FunctionDeclarationTree Modifier and Type Method Description FunctionDeclarationTreeJavaScriptGrammar. FUNCTION_AND_GENERATOR_DECLARATION()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) -
Uses of FunctionDeclarationTree in org.sonar.javascript.tree.impl.declaration
Classes in org.sonar.javascript.tree.impl.declaration that implement FunctionDeclarationTree Modifier and Type Class Description classFunctionDeclarationTreeImplMethods in org.sonar.javascript.tree.impl.declaration that return FunctionDeclarationTree Modifier and Type Method Description static FunctionDeclarationTreeFunctionDeclarationTreeImpl. create(SyntaxToken asyncToken, InternalSyntaxToken functionKeyword, IdentifierTree name, FlowGenericParameterClauseTree genericParameterClause, ParameterListTree parameters, FlowTypeAnnotationTree returnType, BlockTree body)static FunctionDeclarationTreeFunctionDeclarationTreeImpl. createGenerator(InternalSyntaxToken functionKeyword, InternalSyntaxToken starToken, IdentifierTree name, FlowGenericParameterClauseTree genericParameterClause, ParameterListTree parameters, FlowTypeAnnotationTree returnType, BlockTree body) -
Uses of FunctionDeclarationTree in org.sonar.javascript.tree.symbols
Methods in org.sonar.javascript.tree.symbols with parameters of type FunctionDeclarationTree Modifier and Type Method Description voidHoistedSymbolVisitor. visitFunctionDeclaration(FunctionDeclarationTree tree)voidScopeVisitor. visitFunctionDeclaration(FunctionDeclarationTree tree)voidSymbolVisitor. visitFunctionDeclaration(FunctionDeclarationTree tree) -
Uses of FunctionDeclarationTree in org.sonar.javascript.tree.symbols.type
Methods in org.sonar.javascript.tree.symbols.type with parameters of type FunctionDeclarationTree Modifier and Type Method Description voidTypeVisitor. visitFunctionDeclaration(FunctionDeclarationTree tree) -
Uses of FunctionDeclarationTree in org.sonar.plugins.javascript.api.visitors
Methods in org.sonar.plugins.javascript.api.visitors with parameters of type FunctionDeclarationTree Modifier and Type Method Description voidDoubleDispatchVisitor. visitFunctionDeclaration(FunctionDeclarationTree tree)
-