PyIR.Stmt
type t =
| Let of {
}
| SetAttr of {
}
| Store of {
lhs : ScopedIdent.t;
rhs : Exp.t;
}
| StoreSubscript of {
}
| Call of {
}
| CallMethod of {
}
| BuiltinCall of {
lhs : SSA.t;
call : BuiltinCaller.t;
args : Exp.t list;
arg_names : Exp.t;
}
| StoreDeref of {
}
STORE_DEREF
| Delete of ScopedIdent.t
| DeleteDeref of {
name : Ident.t;
slot : int;
}
DELETE_DEREF
| DeleteAttr of {
}
| ImportStar of Exp.t
| GenStart of {
kind : gen_kind;
}
| SetupAnnotations