Interface ForStatement
-
- All Known Implementing Classes:
ForStatementImpl
public interface ForStatement extends Statement
for
See https://docs.python.org/3/reference/compound_stmts.html#grammar-token-for-stmtexpressions()intestExpressions():body()elseClause()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TokenasyncKeyword()StatementListbody()Tokencolon()ElseClauseelseClause()List<Expression>expressions()TokenforKeyword()TokeninKeyword()booleanisAsync()List<Expression>testExpressions()
-
-
-
Method Detail
-
forKeyword
Token forKeyword()
-
expressions
List<Expression> expressions()
-
inKeyword
Token inKeyword()
-
testExpressions
List<Expression> testExpressions()
-
colon
Token colon()
-
body
StatementList body()
-
elseClause
@CheckForNull ElseClause elseClause()
-
isAsync
boolean isAsync()
-
asyncKeyword
@CheckForNull Token asyncKeyword()
-
-