early-dup-export-decl.js 432 B

123456789101112131415161718
  1. // Copyright (C) 2015 the V8 project authors. All rights reserved.
  2. // This code is governed by the BSD license found in the LICENSE file.
  3. /*---
  4. es6id: 15.2.1.1
  5. description: >
  6. It is a Syntax Error if the ExportedNames of ModuleItemList contains any
  7. duplicate entries.
  8. flags: [module]
  9. negative:
  10. phase: parse
  11. type: SyntaxError
  12. features: [generators]
  13. ---*/
  14. $DONOTEVALUATE();
  15. export function f() {}
  16. export function *f() {}