Package org.sonar.python.api.tree
Interface Tuple
-
- All Superinterfaces:
Expression,Tree
- All Known Implementing Classes:
TupleImpl
public interface Tuple extends Expression
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Token>commas()List<Expression>elements()TokenleftParenthesis()TokenrightParenthesis()-
Methods inherited from interface org.sonar.python.api.tree.Tree
accept, ancestors, astNode, children, descendants, descendants, firstToken, getKind, is, lastToken, parent
-
-
-
-
Method Detail
-
leftParenthesis
@CheckForNull Token leftParenthesis()
-
elements
List<Expression> elements()
-
rightParenthesis
@CheckForNull Token rightParenthesis()
-
-