package melange

  1. Overview
  2. Docs
Toolchain to produce JS from Reason/OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

melange-6.0.1-52.tbz
sha256=20123039b9009362857915da348376b637023eebe2e1152f8c619f352564e558
sha512=90d59d247691adcb6a9de74584db923cfb758b835466aa2230c907416d535acec39e34b76fb1ac00b4ee78ab8b56c8017cb4c5154e191db8ce15b54dcc84c545

doc/melange.js_parser/Js_parser/Flow_ast/Statement/ImportDeclaration/index.html

Module Statement.ImportDeclarationSource

Sourcetype import_kind =
  1. | ImportType
  2. | ImportTypeof
  3. | ImportValue
Sourceand ('M, 'T) specifier =
  1. | ImportNamedSpecifiers of ('M, 'T) named_specifier list
  2. | ImportNamespaceSpecifier of 'M * ('M, 'T) Identifier.t
Sourceand ('M, 'T) named_specifier = {
  1. kind : import_kind option;
  2. local : ('M, 'T) Identifier.t option;
  3. remote : ('M, 'T) Identifier.t;
  4. remote_name_def_loc : 'M option;
}
Sourceand ('M, 'T) default_identifier = {
  1. identifier : ('M, 'T) Identifier.t;
  2. remote_default_name_def_loc : 'M option;
}
Sourceand ('M, 'T) t = {
  1. import_kind : import_kind;
  2. source : 'T * 'M StringLiteral.t;
  3. default : ('M, 'T) default_identifier option;
  4. specifiers : ('M, 'T) specifier option;
  5. comments : ('M, unit) Syntax.t option;
}
Sourceval pp_import_kind : Format.formatter -> import_kind -> unit
Sourceval show_import_kind : import_kind -> string
Sourceval pp_specifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) specifier -> unit
Sourceval show_specifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) specifier -> string
Sourceval pp_named_specifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) named_specifier -> unit
Sourceval show_named_specifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) named_specifier -> string
Sourceval pp_default_identifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) default_identifier -> unit
Sourceval show_default_identifier : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) default_identifier -> string
Sourceval pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
Sourceval show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string