package flow_parser

  1. Overview
  2. Docs
type key =
  1. | Literal of Loc.t * Literal.t
  2. | Identifier of Identifier.t
  3. | Computed of Expression.t
type kind =
  1. | Init
  2. | Get
  3. | Set
type t = Loc.t * t'
and t' = {
  1. key : key;
  2. value : Expression.t;
  3. kind : kind;
  4. _method : bool;
  5. shorthand : bool;
}
OCaml

Innovation. Community. Security.