Module PyIR.ScopedIdent

type scope =
  1. | Global
  2. | Fast
  3. | Name
type t = {
  1. scope : scope;
  2. ident : Ident.t;
}