Interface WithStatement
-
- All Known Implementing Classes:
WithStatementImpl
public interface WithStatement extends Statement
with
See https://docs.python.org/3/reference/compound_stmts.html#grammar-token-with-stmtwithItems()statements()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TokenasyncKeyword()Tokencolon()booleanisAsync()StatementListstatements()List<WithItem>withItems()TokenwithKeyword()
-
-
-
Method Detail
-
withKeyword
Token withKeyword()
-
colon
Token colon()
-
statements
StatementList statements()
-
isAsync
boolean isAsync()
-
asyncKeyword
@CheckForNull Token asyncKeyword()
-
-