Module JSX.MemberExpression

type ('M, 'T) t = 'M * ('M, 'T) t'
and ('M, 'T) _object =
  1. | Identifier of ('M, 'T) Identifier.t
  2. | MemberExpression of ('M, 'T) t
and ('M, 'T) t' = {
  1. _object : ('M, 'T) _object;
  2. property : ('M, 'T) Identifier.t;
}
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__object : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) _object -> unit
val show__object : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) _object -> 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