package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Block : sig ... end
module If : sig ... end
module Labeled : sig ... end
module Break : sig ... end
module Continue : sig ... end
module With : sig ... end
module TypeAlias : sig ... end
module Switch : sig ... end
module Return : sig ... end
module Throw : sig ... end
module Try : sig ... end
module VariableDeclaration : sig ... end
module While : sig ... end
module DoWhile : sig ... end
module For : sig ... end
module ForIn : sig ... end
module ForOf : sig ... end
module Interface : sig ... end
module DeclareVariable : sig ... end
module DeclareFunction : sig ... end
module DeclareModule : sig ... end
module ExportNamedDeclaration : sig ... end
module ExportDefaultDeclaration : sig ... end
module DeclareExportDeclaration : sig ... end
module ImportDeclaration : sig ... end
module Expression : sig ... end
type exportKind =
  1. | ExportType
  2. | ExportValue
type t = Loc.t * t'
and t' =
  1. | Empty
  2. | Block of Block.t
  3. | Expression of Expression.t
  4. | If of If.t
  5. | Labeled of Labeled.t
  6. | Break of Break.t
  7. | Continue of Continue.t
  8. | With of With.t
  9. | TypeAlias of TypeAlias.t
  10. | Switch of Switch.t
  11. | Return of Return.t
  12. | Throw of Throw.t
  13. | Try of Try.t
  14. | While of While.t
  15. | DoWhile of DoWhile.t
  16. | For of For.t
  17. | ForIn of ForIn.t
  18. | ForOf of ForOf.t
  19. | Debugger
  20. | FunctionDeclaration of Function.t
  21. | VariableDeclaration of VariableDeclaration.t
  22. | ClassDeclaration of Class.t
  23. | InterfaceDeclaration of Interface.t
  24. | DeclareVariable of DeclareVariable.t
  25. | DeclareFunction of DeclareFunction.t
  26. | DeclareClass of Interface.t
  27. | DeclareModule of DeclareModule.t
  28. | DeclareModuleExports of Type.annotation
  29. | DeclareExportDeclaration of DeclareExportDeclaration.t
  30. | ExportNamedDeclaration of ExportNamedDeclaration.t
  31. | ExportDefaultDeclaration of ExportDefaultDeclaration.t
  32. | ImportDeclaration of ImportDeclaration.t