Package org.sonar.python.api.tree
Interface WithStatement
-
- All Known Implementing Classes:
WithStatementImpl
public interface WithStatement extends Statement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TokenasyncKeyword()Tokencolon()booleanisAsync()StatementListstatements()List<WithItem>withItems()-
Methods inherited from interface org.sonar.python.api.tree.Tree
accept, ancestors, astNode, children, descendants, descendants, firstToken, getKind, is, lastToken, parent
-
-
-
-
Method Detail
-
colon
Token colon()
-
statements
StatementList statements()
-
isAsync
boolean isAsync()
-
asyncKeyword
@CheckForNull Token asyncKeyword()
-
-