org.scalajs.core.tools.javascript.Trees
export statement.
export
This corresponds to the following syntax:
export { <binding1_1> as <binding1_2>, ..., <bindingN_1> as <bindingN_2> }
The _1 parts of bindings are therefore the identifiers from the current module that are exported. The _2 parts are the names under which they are exported to other modules.
_1
_2
export
statement.This corresponds to the following syntax:
The
_1
parts of bindings are therefore the identifiers from the current module that are exported. The_2
parts are the names under which they are exported to other modules.