Type Alias rustpython_ast::located::Comprehension
source · pub type Comprehension = Comprehension<SourceRange>;
Aliased Type§
struct Comprehension {
pub range: EmptyRange<SourceRange>,
pub target: Expr<SourceRange>,
pub iter: Expr<SourceRange>,
pub ifs: Vec<Expr<SourceRange>>,
pub is_async: bool,
}
Fields§
§range: EmptyRange<SourceRange>
§target: Expr<SourceRange>
§iter: Expr<SourceRange>
§ifs: Vec<Expr<SourceRange>>
§is_async: bool