Interface FunctionExpressionTree
-
- All Superinterfaces:
ExpressionTree,FunctionTree,HasAttributes,Tree
- All Known Implementing Classes:
FunctionExpressionTreeImpl
public interface FunctionExpressionTree extends FunctionTree, ExpressionTree
function
parameters()body()functionparameters()lexicalVars()body()function ¶meters()body()static functionparameters()body()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockTreebody()SyntaxTokenfunctionToken()LexicalVariablesTreelexicalVars()ParameterListTreeparameters()SyntaxTokenreferenceToken()ReturnTypeClauseTreereturnTypeClause()SyntaxTokenstaticToken()-
Methods inherited from interface org.sonar.plugins.php.api.tree.declaration.HasAttributes
attributeGroups
-
-
-
-
Method Detail
-
staticToken
@Nullable SyntaxToken staticToken()
-
functionToken
SyntaxToken functionToken()
- Specified by:
functionTokenin interfaceFunctionTree
-
referenceToken
@Nullable SyntaxToken referenceToken()
- Specified by:
referenceTokenin interfaceFunctionTree
-
parameters
ParameterListTree parameters()
- Specified by:
parametersin interfaceFunctionTree
-
lexicalVars
@Nullable LexicalVariablesTree lexicalVars()
-
returnTypeClause
@Nullable ReturnTypeClauseTree returnTypeClause()
- Specified by:
returnTypeClausein interfaceFunctionTree
-
body
BlockTree body()
- Specified by:
bodyin interfaceFunctionTree
-
-