early-lex-and-var.js 437 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: 10.2.1
  5. description: >
  6. It is a Syntax Error if any element of the LexicallyDeclaredNames of
  7. ModuleItemList also occurs in the VarDeclaredNames of ModuleItemList.
  8. flags: [module]
  9. features: [let]
  10. negative:
  11. phase: parse
  12. type: SyntaxError
  13. ---*/
  14. $DONOTEVALUATE();
  15. let x;
  16. var x;