Implement namespace exports in modules (#4708)

JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
This commit is contained in:
Zoltan Herczeg
2021-07-09 07:23:28 +02:00
committed by GitHub
parent e3a299b3d6
commit 7f6a699700
6 changed files with 130 additions and 5 deletions
+3 -2
View File
@@ -13,5 +13,6 @@
* limitations under the License.
*/
/* Star exports can't have an export name. */
export * as star from "../es.next/module-export-01.mjs"
export function ns() {}
/* Duplicated export. */
export * as ns from "../es.next/module-export-fail-test.mjs"