package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = Loc.t * t'
and kind =
  1. | Constructor
  2. | Method
  3. | Get
  4. | Set
and t' = {
  1. kind : kind;
  2. key : Expression.Object.Property.key;
  3. value : Loc.t * Function.t;
  4. static : bool;
  5. decorators : Expression.t list;
}