package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module DefaultedMember : sig ... end
module InitializedMember : sig ... end
module BooleanBody : sig ... end
module NumberBody : sig ... end
module StringBody : sig ... end
module SymbolBody : sig ... end
module BigIntBody : sig ... end
type ('M, 'T) t = {
  1. id : ('M, 'T) Identifier.t;
  2. body : 'M body;
  3. comments : ('M, unit) Syntax.t option;
}
and 'M body = 'M * 'M body'
and 'M body' =
  1. | BooleanBody of 'M BooleanBody.t
  2. | NumberBody of 'M NumberBody.t
  3. | StringBody of 'M StringBody.t
  4. | SymbolBody of 'M SymbolBody.t
  5. | BigIntBody of 'M BigIntBody.t
val pp : (Ppx_deriving_runtime.Format.formatter -> 'M -> Ppx_deriving_runtime.unit) -> (Ppx_deriving_runtime.Format.formatter -> 'T -> Ppx_deriving_runtime.unit) -> Ppx_deriving_runtime.Format.formatter -> ('M, 'T) t -> Ppx_deriving_runtime.unit
val show : (Ppx_deriving_runtime.Format.formatter -> 'M -> Ppx_deriving_runtime.unit) -> (Ppx_deriving_runtime.Format.formatter -> 'T -> Ppx_deriving_runtime.unit) -> ('M, 'T) t -> Ppx_deriving_runtime.string
val pp_body : (Ppx_deriving_runtime.Format.formatter -> 'M -> Ppx_deriving_runtime.unit) -> Ppx_deriving_runtime.Format.formatter -> 'M body -> Ppx_deriving_runtime.unit
val show_body : (Ppx_deriving_runtime.Format.formatter -> 'M -> Ppx_deriving_runtime.unit) -> 'M body -> Ppx_deriving_runtime.string
val pp_body' : (Ppx_deriving_runtime.Format.formatter -> 'M -> Ppx_deriving_runtime.unit) -> Ppx_deriving_runtime.Format.formatter -> 'M body' -> Ppx_deriving_runtime.unit
val show_body' : (Ppx_deriving_runtime.Format.formatter -> 'M -> Ppx_deriving_runtime.unit) -> 'M body' -> Ppx_deriving_runtime.string
OCaml

Innovation. Community. Security.