Interface CallExpression
-
- All Superinterfaces:
Expression,Tree
- All Known Implementing Classes:
CallExpressionImpl
public interface CallExpression extends Expression
See https://docs.python.org/3/reference/expressions.html#callscallee()(argumentList())
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ArgListargumentList()List<Argument>arguments()Utility method to returnargumentList().arguments()or an empty list when argumentList is null.Expressioncallee()default SymbolcalleeSymbol()TokenleftPar()TokenrightPar()-
Methods inherited from interface org.sonar.plugins.python.api.tree.Expression
type
-
-
-
-
Method Detail
-
callee
Expression callee()
-
leftPar
Token leftPar()
-
argumentList
@CheckForNull ArgList argumentList()
-
arguments
List<Argument> arguments()
Utility method to returnargumentList().arguments()or an empty list when argumentList is null.
-
rightPar
Token rightPar()
-
calleeSymbol
@CheckForNull default Symbol calleeSymbol()
-
-