Module PyIR.CodeInfo

type t = {
  1. co_name : Ident.t;
  2. co_firstlineno : int;
  3. co_nlocals : int;
  4. co_argcount : int;
  5. co_posonlyargcount : int;
  6. co_kwonlyargcount : int;
  7. co_cellvars : Ident.t array;
  8. co_freevars : Ident.t array;
  9. co_names : Ident.t array;
  10. co_varnames : Ident.t array;
  11. has_star_arguments : bool;
  12. has_star_keywords : bool;
  13. is_async : bool;
  14. is_generator : bool;
}