Package org.sonar.python.api.tree
Interface FunctionLike
-
- All Superinterfaces:
Tree
- All Known Subinterfaces:
FunctionDef,LambdaExpression
- All Known Implementing Classes:
FunctionDefImpl,LambdaExpressionImpl
public interface FunctionLike extends Tree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisMethodDefinition()Set<Symbol>localVariables()ParameterListparameters()-
Methods inherited from interface org.sonar.python.api.tree.Tree
accept, ancestors, astNode, children, descendants, descendants, firstToken, getKind, is, lastToken, parent
-
-
-
-
Method Detail
-
parameters
@CheckForNull ParameterList parameters()
-
isMethodDefinition
boolean isMethodDefinition()
-
-