Module EnumDeclaration.StringBody

type 'M t = {
  1. members : ('M StringLiteral.t, 'M) members;
  2. explicit_type : bool;
  3. has_unknown_members : bool;
  4. comments : ('M, 'M Comment.t list) Syntax.t option;
}
and ('I, 'M) members =
  1. | Defaulted of 'M DefaultedMember.t list
  2. | Initialized of ('I, 'M) InitializedMember.t list
val pp : (Format.formatter -> 'M -> unit) -> Format.formatter -> 'M t -> unit
val show : (Format.formatter -> 'M -> unit) -> 'M t -> string
val pp_members : (Format.formatter -> 'I -> unit) -> (Format.formatter -> 'M -> unit) -> Format.formatter -> ('I, 'M) members -> unit
val show_members : (Format.formatter -> 'I -> unit) -> (Format.formatter -> 'M -> unit) -> ('I, 'M) members -> string