Interface FlowFunctionSignatureTree
-
- All Superinterfaces:
FlowTypeTree,Tree
- All Known Implementing Classes:
FlowFunctionSignatureTreeImpl
public interface FlowFunctionSignatureTree extends FlowTypeTree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SyntaxTokenfunctionToken()FlowGenericParameterClauseTreegenericParameterClause()IdentifierTreename()FlowFunctionTypeParameterClauseTreeparameterClause()FlowTypeAnnotationTreereturnType()-
Methods inherited from interface org.sonar.plugins.javascript.api.tree.Tree
accept, childrenStream, descendants, firstToken, is, isAncestorOf, lastToken, parent
-
-
-
-
Method Detail
-
functionToken
SyntaxToken functionToken()
-
name
IdentifierTree name()
-
genericParameterClause
@Nullable FlowGenericParameterClauseTree genericParameterClause()
-
parameterClause
FlowFunctionTypeParameterClauseTree parameterClause()
-
returnType
FlowTypeAnnotationTree returnType()
-
-