package melange

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

melange-6.0.1-414.tbz
sha256=c1cce011864740dc43ee0f4e8130f70725f5e7042942cce653be5b6a8b439fb5
sha512=04fc82d97d5b9632c4ee041414d9fe104556a8c329e7444ffd71017baa00612da103fda91c309fc29a16e143c29d8748e1b1035a74681b61ff65fcfdf7f4e59c

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