2021-08-17 05:48:10 +02:00
|
|
|
// Copyright 2021 Chengzhong Wu. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
2021-08-19 18:41:21 +02:00
|
|
|
esid: sec-module-semantics-static-semantics-early-errors
|
2021-08-17 05:48:10 +02:00
|
|
|
description: >
|
|
|
|
It is a Syntax Error if the LexicallyDeclaredNames of ModuleItemList
|
|
|
|
contains any duplicate entries.
|
|
|
|
At the top level of a Module, function declarations are treated like
|
|
|
|
lexical declarations rather than like var declarations.
|
|
|
|
flags: [module]
|
|
|
|
negative:
|
|
|
|
phase: parse
|
|
|
|
type: SyntaxError
|
|
|
|
---*/
|
|
|
|
|
|
|
|
$DONOTEVALUATE();
|
|
|
|
|
2021-08-19 18:41:21 +02:00
|
|
|
function x() {}
|
2021-08-19 18:47:16 +02:00
|
|
|
function x() {}
|