Module Flow_ast.MatchPattern

module UnaryPattern : sig ... end
module MemberPattern : sig ... end
module BindingPattern : sig ... end
module RestPattern : sig ... end
module ObjectPattern : sig ... end
module ArrayPattern : sig ... end
module OrPattern : sig ... end
module AsPattern : sig ... end
module WildcardPattern : sig ... end
type ('M, 'T) t = 'M * ('M, 'T) t'
and ('M, 'T) t' =
  1. | WildcardPattern of 'M WildcardPattern.t
  2. | NumberPattern of 'M NumberLiteral.t
  3. | BigIntPattern of 'M BigIntLiteral.t
  4. | StringPattern of 'M StringLiteral.t
  5. | BooleanPattern of 'M BooleanLiteral.t
  6. | NullPattern of ('M, unit) Syntax.t option
  7. | UnaryPattern of 'M UnaryPattern.t
  8. | BindingPattern of ('M, 'T) BindingPattern.t
  9. | IdentifierPattern of ('M, 'T) Identifier.t
  10. | MemberPattern of ('M, 'T) MemberPattern.t
  11. | ObjectPattern of ('M, 'T) ObjectPattern.t
  12. | ArrayPattern of ('M, 'T) ArrayPattern.t
  13. | OrPattern of ('M, 'T) OrPattern.t
  14. | AsPattern of ('M, 'T) AsPattern.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_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