2018-06-28 21:46:36 +02:00
|
|
|
// Copyright (C) 2018 Valerie Young. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
esid: sec-module-semantics-static-semantics-early-errors
|
|
|
|
description: >
|
|
|
|
It is a Syntax Error if the ExportedNames of ModuleItemList contains any
|
|
|
|
duplicate entries.
|
2018-07-24 07:15:26 +02:00
|
|
|
flags: [module]
|
|
|
|
features: [export-star-as-namespace-from-module]
|
2018-06-28 21:46:36 +02:00
|
|
|
negative:
|
|
|
|
phase: parse
|
|
|
|
type: SyntaxError
|
|
|
|
---*/
|
|
|
|
|
2018-10-11 16:59:24 +02:00
|
|
|
$DONOTEVALUATE();
|
2018-06-28 21:46:36 +02:00
|
|
|
|
|
|
|
var x;
|
|
|
|
export { x as z };
|
2018-10-24 18:17:56 +02:00
|
|
|
export * as z from './early-dup-export-as-star-as.js';
|