mirror of https://github.com/tc39/test262.git
fixup! add other function variants
This commit is contained in:
parent
c1c1ed47db
commit
206a3f4932
|
@ -0,0 +1,20 @@
|
|||
// Copyright 2021 Chengzhong Wu. 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 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();
|
||||
|
||||
function x() {}
|
||||
async function* x() {}
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright 2021 Chengzhong Wu. 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 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();
|
||||
|
||||
function x() {}
|
||||
async function x() {}
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright 2021 Chengzhong Wu. 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 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();
|
||||
|
||||
function x() {}
|
||||
function* x() {}
|
|
@ -17,4 +17,4 @@ negative:
|
|||
$DONOTEVALUATE();
|
||||
|
||||
function x() {}
|
||||
async function x() {}
|
||||
function x() {}
|
||||
|
|
Loading…
Reference in New Issue