Type Alias rustpython_ast::located::StmtWhile
source · pub type StmtWhile = StmtWhile<SourceRange>;
Aliased Type§
struct StmtWhile {
pub range: SourceRange,
pub test: Box<Expr<SourceRange>>,
pub body: Vec<Stmt<SourceRange>>,
pub orelse: Vec<Stmt<SourceRange>>,
}
Fields§
§range: SourceRange
§test: Box<Expr<SourceRange>>
§body: Vec<Stmt<SourceRange>>
§orelse: Vec<Stmt<SourceRange>>