Package org.sonar.python.api.tree
Interface YieldExpression
-
- All Superinterfaces:
Expression,Tree
- All Known Implementing Classes:
YieldExpressionImpl
public interface YieldExpression extends Expression
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Expression>expressions()TokenfromKeyword()TokenyieldKeyword()-
Methods inherited from interface org.sonar.python.api.tree.Tree
accept, ancestors, astNode, children, descendants, descendants, firstToken, getKind, is, lastToken, parent
-
-
-
-
Method Detail
-
yieldKeyword
Token yieldKeyword()
-
fromKeyword
@CheckForNull Token fromKeyword()
-
expressions
List<Expression> expressions()
-
-