diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /js/src/tests/test262/language/global-code/script-decl-func-dups.js | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/language/global-code/script-decl-func-dups.js')
-rw-r--r-- | js/src/tests/test262/language/global-code/script-decl-func-dups.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/global-code/script-decl-func-dups.js b/js/src/tests/test262/language/global-code/script-decl-func-dups.js new file mode 100644 index 0000000000..d233337fb6 --- /dev/null +++ b/js/src/tests/test262/language/global-code/script-decl-func-dups.js @@ -0,0 +1,35 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-globaldeclarationinstantiation +es6id: 15.1.8 +description: > + When multiple like-named function declarations exist, the final is assigned + to the new binding. +info: | + [...] + 9. Let declaredFunctionNames be a new empty List. + 10. For each d in varDeclarations, in reverse list order do + a. If d is neither a VariableDeclaration or a ForBinding, then + i. Assert: d is either a FunctionDeclaration or a + GeneratorDeclaration. + ii. NOTE If there are multiple FunctionDeclarations for the same name, + the last declaration is used. + iii. Let fn be the sole element of the BoundNames of d. + iv. If fn is not an element of declaredFunctionNames, then + 1. Let fnDefinable be ? envRec.CanDeclareGlobalFunction(fn). + 2. If fnDefinable is false, throw a TypeError exception. + 3. Append fn to declaredFunctionNames. + 4. Insert d as the first element of functionsToInitialize. + [...] +---*/ + +$262.evalScript( + 'function f() { return 1; }' + + 'function f() { return 2; }' + + 'function f() { return 3; }' +); + +assert.sameValue(f(), 3); + +reportCompare(0, 0); |