Interface ArrowFunctionExpressionTree
-
- All Superinterfaces:
ExpressionTree
,FunctionTree
,HasAttributes
,Tree
- All Known Implementing Classes:
ArrowFunctionExpressionTreeImpl
public interface ArrowFunctionExpressionTree extends FunctionTree, ExpressionTree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTree
body()
SyntaxToken
doubleArrowToken()
SyntaxToken
functionToken()
ParameterListTree
parameters()
SyntaxToken
referenceToken()
ReturnTypeClauseTree
returnTypeClause()
SyntaxToken
staticToken()
-
Methods inherited from interface org.sonar.plugins.php.api.tree.declaration.HasAttributes
attributeGroups
-
-
-
-
Method Detail
-
staticToken
@Nullable SyntaxToken staticToken()
-
functionToken
SyntaxToken functionToken()
- Specified by:
functionToken
in interfaceFunctionTree
-
referenceToken
@Nullable SyntaxToken referenceToken()
- Specified by:
referenceToken
in interfaceFunctionTree
-
parameters
ParameterListTree parameters()
- Specified by:
parameters
in interfaceFunctionTree
-
returnTypeClause
@Nullable ReturnTypeClauseTree returnTypeClause()
- Specified by:
returnTypeClause
in interfaceFunctionTree
-
doubleArrowToken
SyntaxToken doubleArrowToken()
-
body
ExpressionTree body()
- Specified by:
body
in interfaceFunctionTree
-
-