Module MatchPattern.MemberPattern

type ('M, 'T) base =
  1. | BaseIdentifier of ('M, 'T) Identifier.t
  2. | BaseMember of ('M, 'T) t
and ('M, 'T) property =
  1. | PropertyString of 'M * 'M StringLiteral.t
  2. | PropertyNumber of 'M * 'M NumberLiteral.t
  3. | PropertyBigInt of 'M * 'M BigIntLiteral.t
  4. | PropertyIdentifier of ('M, 'T) Identifier.t
and ('M, 'T) t = 'T * ('M, 'T) t'
and ('M, 'T) t' = {
  1. base : ('M, 'T) base;
  2. property : ('M, 'T) property;
  3. comments : ('M, unit) Syntax.t option;
}
val pp_base : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) base -> unit
val show_base : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) base -> string
val pp_property : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) property -> unit
val show_property : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) property -> string
val pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
val show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string
val pp_t' : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t' -> unit
val show_t' : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t' -> string