Package org.sonar.python.api.tree
Interface PyCallExpressionTree
-
- All Superinterfaces:
PyExpressionTree,Tree
- All Known Implementing Classes:
PyCallExpressionTreeImpl
public interface PyCallExpressionTree extends PyExpressionTree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PyArgListTreeargumentList()List<PyArgumentTree>arguments()Utility method to returnargumentList().arguments()or an empty list when argumentList is null.PyExpressionTreecallee()com.sonar.sslr.api.TokenleftPar()com.sonar.sslr.api.TokenrightPar()
-
-
-
Method Detail
-
callee
PyExpressionTree callee()
-
leftPar
com.sonar.sslr.api.Token leftPar()
-
argumentList
@CheckForNull PyArgListTree argumentList()
-
arguments
List<PyArgumentTree> arguments()
Utility method to returnargumentList().arguments()or an empty list when argumentList is null.
-
rightPar
com.sonar.sslr.api.Token rightPar()
-
-