package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type left =
  1. | LeftDeclaration of Loc.t * VariableDeclaration.t
  2. | LeftExpression of Expression.t
type t = {
  1. left : left;
  2. right : Expression.t;
  3. body : Statement.t;
  4. async : bool;
}