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

Class AsyncFor

parser/src/ast.rs:860–866  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

858// https://docs.python.org/3/library/ast.html#ast.AsyncFor
859#[derive(Debug, Clone)]
860pub struct AsyncFor {
861 pub node: Node,
862 pub target: Expression,
863 pub iter: Expression,
864 pub body: Vec<Statement>,
865 pub orelse: Vec<Statement>,
866}
867
868// https://docs.python.org/3/library/ast.html#ast.With
869#[derive(Debug, Clone)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected