Identifier.IdentSourceThese are uniquely tagged identifiers produced by the typing.
type t = private {id_str : string;The identifier name.
*)id_attrs : string list;The attributes of the identifier.
*)id_loc : Ppxlib.Location.t;The location of the identifier.
*)id_tag : int;The unique tag of the identifier.
*)}The type for identifiers.
Pretty printer for identifiers.
create ~attrs ~loc id is a new pre-identifier identified with id with attributes attrs and location loc. A unique tag is automatically affected to the new identifier Default attributes are empty, and default location is Location.none.
of_preid pid is a fresh identifier using the same name, attributes and location as pid. A unique tag is automatically affected to the new identifier
set_loc t loc is t with loc as its location.