Package org.sonar.python.api.tree
Interface PyWithStatementTree
-
- All Superinterfaces:
PyStatementTree,Tree
- All Known Implementing Classes:
PyWithStatementTreeImpl
public interface PyWithStatementTree extends PyStatementTree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.sonar.sslr.api.TokenasyncKeyword()com.sonar.sslr.api.Tokencolon()booleanisAsync()PyStatementListTreestatements()List<PyWithItemTree>withItems()
-
-
-
Method Detail
-
withItems
List<PyWithItemTree> withItems()
-
colon
com.sonar.sslr.api.Token colon()
-
statements
PyStatementListTree statements()
-
isAsync
boolean isAsync()
-
asyncKeyword
@CheckForNull com.sonar.sslr.api.Token asyncKeyword()
-
-