PyIR.CodeInfo
type t = {
co_name : Ident.t;
co_firstlineno : int;
co_nlocals : int;
co_argcount : int;
co_posonlyargcount : int;
co_kwonlyargcount : int;
co_cellvars : Ident.t array;
co_freevars : Ident.t array;
co_names : Ident.t array;
co_varnames : Ident.t array;
has_star_arguments : bool;
has_star_keywords : bool;
is_async : bool;
is_generator : bool;
}