package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type (!'M, !'T) key =
  1. | Literal of 'T * Literal.t
  2. | Identifier of 'T Identifier.t
  3. | PrivateName of 'M PrivateName.t
  4. | Computed of ('M, 'T) Expression.t
and (!'M, !'T) t = 'M * ('M, 'T) t'
and (!'M, !'T) t' =
  1. | Init of {
    1. key : ('M, 'T) key;
    2. value : ('M, 'T) Expression.t;
    3. shorthand : bool;
    }
  2. | Method of {
    1. key : ('M, 'T) key;
    2. value : 'M * ('M, 'T) Function.t;
    }
  3. | Get of {
    1. key : ('M, 'T) key;
    2. value : 'M * ('M, 'T) Function.t;
    }
  4. | Set of {
    1. key : ('M, 'T) key;
    2. value : 'M * ('M, 'T) Function.t;
    }
val pp_key : (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) key -> Ppx_deriving_runtime.unit
val show_key : (Ppx_deriving_runtime.Format.formatter -> 'M -> Ppx_deriving_runtime.unit) -> (Ppx_deriving_runtime.Format.formatter -> 'T -> Ppx_deriving_runtime.unit) -> ('M, 'T) key -> Ppx_deriving_runtime.string
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_t' : (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_t' : (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
OCaml

Innovation. Community. Security.