MCPcopy Create free account
hub / github.com/Glyphack/enderpy / Comprehension

Class Comprehension

parser/src/ast.rs:633–639  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

631// https://docs.python.org/3/library/ast.html#ast.comprehension
632#[derive(Debug, Clone)]
633pub struct Comprehension {
634 pub node: Node,
635 pub target: Expression,
636 pub iter: Expression,
637 pub ifs: Vec<Expression>,
638 pub is_async: bool,
639}
640
641// https://docs.python.org/3/library/ast.html#ast.Attribute
642#[derive(Debug, Clone)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected