package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type init =
  1. | InitDeclaration of Loc.t * VariableDeclaration.t
  2. | InitExpression of Expression.t
type t = {
  1. init : init option;
  2. test : Expression.t option;
  3. update : Expression.t option;
  4. body : Statement.t;
}