package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Identifier : sig ... end
module NamespacedName : sig ... end
module ExpressionContainer : sig ... end
module Text : sig ... end
module Attribute : sig ... end
module SpreadAttribute : sig ... end
module MemberExpression : sig ... end
type name =
  1. | Identifier of Identifier.t
  2. | NamespacedName of NamespacedName.t
  3. | MemberExpression of MemberExpression.t
module Opening : sig ... end
module Closing : sig ... end
type child = Loc.t * child'
and child' =
  1. | Element of element
  2. | ExpressionContainer of ExpressionContainer.t
  3. | Text of Text.t
and element = {
  1. openingElement : Opening.t;
  2. closingElement : Closing.t option;
  3. children : child list;
}