package flow_parser

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