package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module SpreadElement : sig ... end
type expression_or_spread =
  1. | Expression of Expression.t
  2. | Spread of SpreadElement.t
module Array : sig ... end
module TemplateLiteral : sig ... end
module TaggedTemplate : sig ... end
module Object : sig ... end
module Sequence : sig ... end
module Unary : sig ... end
module Binary : sig ... end
module Assignment : sig ... end
module Update : sig ... end
module Logical : sig ... end
module Conditional : sig ... end
module New : sig ... end
module Call : sig ... end
module Member : sig ... end
module Yield : sig ... end
module Comprehension : sig ... end
module Generator : sig ... end
module TypeCast : sig ... end
module MetaProperty : sig ... end
type t = Loc.t * t'
and t' =
  1. | Array of Array.t
  2. | ArrowFunction of Function.t
  3. | Assignment of Assignment.t
  4. | Binary of Binary.t
  5. | Call of Call.t
  6. | Class of Class.t
  7. | Comprehension of Comprehension.t
  8. | Conditional of Conditional.t
  9. | Function of Function.t
  10. | Generator of Generator.t
  11. | Identifier of Identifier.t
  12. | Import of t
  13. | JSXElement of JSX.element
  14. | Literal of Literal.t
  15. | Logical of Logical.t
  16. | Member of Member.t
  17. | MetaProperty of MetaProperty.t
  18. | New of New.t
  19. | Object of Object.t
  20. | Sequence of Sequence.t
  21. | Super
  22. | TaggedTemplate of TaggedTemplate.t
  23. | TemplateLiteral of TemplateLiteral.t
  24. | This
  25. | TypeCast of TypeCast.t
  26. | Unary of Unary.t
  27. | Update of Update.t
  28. | Yield of Yield.t
OCaml

Innovation. Community. Security.