package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module CallTypeArg : sig ... end
module CallTypeArgs : sig ... end
module SpreadElement : sig ... end
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
type (!'M, !'T) expression_or_spread =
  1. | Expression of ('M, 'T) Expression.t
  2. | Spread of ('M, 'T) SpreadElement.t
module ArgList : sig ... end
module New : sig ... end
module Call : sig ... end
module OptionalCall : sig ... end
module Member : sig ... end
module OptionalMember : sig ... end
module Yield : sig ... end
module Comprehension : sig ... end
module Generator : sig ... end
module TypeCast : sig ... end
module MetaProperty : sig ... end
module This : sig ... end
module Super : sig ... end
module Import : sig ... end
type (!'M, !'T) t = 'T * ('M, 'T) t'
and (!'M, !'T) t' =
  1. | Array of ('M, 'T) Array.t
  2. | ArrowFunction of ('M, 'T) Function.t
  3. | Assignment of ('M, 'T) Assignment.t
  4. | Binary of ('M, 'T) Binary.t
  5. | Call of ('M, 'T) Call.t
  6. | Class of ('M, 'T) Class.t
  7. | Comprehension of ('M, 'T) Comprehension.t
  8. | Conditional of ('M, 'T) Conditional.t
  9. | Function of ('M, 'T) Function.t
  10. | Generator of ('M, 'T) Generator.t
  11. | Identifier of ('M, 'T) Identifier.t
  12. | Import of ('M, 'T) Import.t
  13. | JSXElement of ('M, 'T) JSX.element
  14. | JSXFragment of ('M, 'T) JSX.fragment
  15. | Literal of 'M Literal.t
  16. | Logical of ('M, 'T) Logical.t
  17. | Member of ('M, 'T) Member.t
  18. | MetaProperty of 'M MetaProperty.t
  19. | New of ('M, 'T) New.t
  20. | Object of ('M, 'T) Object.t
  21. | OptionalCall of ('M, 'T) OptionalCall.t
  22. | OptionalMember of ('M, 'T) OptionalMember.t
  23. | Sequence of ('M, 'T) Sequence.t
  24. | Super of 'M Super.t
  25. | TaggedTemplate of ('M, 'T) TaggedTemplate.t
  26. | TemplateLiteral of ('M, 'T) TemplateLiteral.t
  27. | This of 'M This.t
  28. | TypeCast of ('M, 'T) TypeCast.t
  29. | Unary of ('M, 'T) Unary.t
  30. | Update of ('M, 'T) Update.t
  31. | Yield of ('M, 'T) Yield.t