early-dup-export-dflt-id.js 472 B

12345678910111213141516171819
  1. // Copyright (C) 2016 the V8 project authors. All rights reserved.
  2. // This code is governed by the BSD license found in the LICENSE file.
  3. /*---
  4. esid: sec-module-semantics-static-semantics-early-errors
  5. es6id: 15.2.1.1
  6. description: >
  7. It is a Syntax Error if the ExportedNames of ModuleItemList contains any
  8. duplicate entries.
  9. flags: [module]
  10. negative:
  11. phase: parse
  12. type: SyntaxError
  13. ---*/
  14. $DONOTEVALUATE();
  15. var x, y;
  16. export default x;
  17. export { y as default };