From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../async-generator/eval-var-scope-syntax-err.js | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 js/src/tests/test262/language/statements/async-generator/eval-var-scope-syntax-err.js (limited to 'js/src/tests/test262/language/statements/async-generator/eval-var-scope-syntax-err.js') diff --git a/js/src/tests/test262/language/statements/async-generator/eval-var-scope-syntax-err.js b/js/src/tests/test262/language/statements/async-generator/eval-var-scope-syntax-err.js new file mode 100644 index 0000000000..2711c015b4 --- /dev/null +++ b/js/src/tests/test262/language/statements/async-generator/eval-var-scope-syntax-err.js @@ -0,0 +1,40 @@ +// This file was procedurally generated from the following sources: +// - src/function-forms/eval-var-scope-syntax-err.case +// - src/function-forms/error-no-strict/async-gen-func-decl.template +/*--- +description: sloppy direct eval in params introduces var (async generator function declaration in sloppy code) +esid: sec-asyncgenerator-definitions-instantiatefunctionobject +features: [default-parameters, async-iteration] +flags: [generated, noStrict] +info: | + AsyncGeneratorDeclaration : async [no LineTerminator here] function * BindingIdentifier + ( FormalParameters ) { AsyncGeneratorBody } + + [...] + 3. Let F be ! AsyncGeneratorFunctionCreate(Normal, FormalParameters, AsyncGeneratorBody, + scope, strict). + [...] + + + + Runtime Semantics: IteratorBindingInitialization + FormalParameter : BindingElement + + 1. Return the result of performing IteratorBindingInitialization for BindingElement with arguments iteratorRecord and environment. + +---*/ + + +var callCount = 0; +async function* f(a = eval("var a = 42")) { + + callCount = callCount + 1; +} + +assert.throws(SyntaxError, function() { + f(); +}); + +assert.sameValue(callCount, 0, 'generator function body not evaluated'); + +reportCompare(0, 0); -- cgit v1.2.3