Package org.sonar.python.api.tree
Interface CallExpression
-
- All Superinterfaces:
Expression,Tree
- All Known Implementing Classes:
CallExpressionImpl
public interface CallExpression extends Expression
-
-
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.python.api.tree.Tree
accept, ancestors, astNode, children, descendants, descendants, firstToken, getKind, is, lastToken, parent
-
-
-
-
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()
-
-