package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type !'M key =
  1. | Literal of 'M * Literal.t
  2. | Identifier of 'M Identifier.t
  3. | PrivateName of 'M PrivateName.t
  4. | Computed of 'M Expression.t
type !'M t = 'M * 'M t'
and !'M t' =
  1. | Init of {
    1. key : 'M key;
    2. value : 'M Expression.t;
    3. shorthand : bool;
    }
  2. | Method of {
    1. key : 'M key;
    2. value : 'M * 'M Function.t;
    }
  3. | Get of {
    1. key : 'M key;
    2. value : 'M * 'M Function.t;
    }
  4. | Set of {
    1. key : 'M key;
    2. value : 'M * 'M Function.t;
    }
OCaml

Innovation. Community. Security.