Module JSX.ExpressionContainer

type ('M, 'T) t = {
  1. expression : ('M, 'T) expression;
  2. comments : ('M, 'M Comment.t list) Syntax.t option;
}
and ('M, 'T) expression =
  1. | Expression of ('M, 'T) Expression.t
  2. | EmptyExpression
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_expression : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) expression -> unit
val show_expression : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) expression -> string