summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/global-code/decl-func.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/tests/test262/language/global-code/decl-func.js
parentInitial commit. (diff)
downloadfirefox-esr-upstream.tar.xz
firefox-esr-upstream.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/language/global-code/decl-func.js')
-rw-r--r--js/src/tests/test262/language/global-code/decl-func.js50
1 files changed, 50 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/global-code/decl-func.js b/js/src/tests/test262/language/global-code/decl-func.js
new file mode 100644
index 0000000000..2de1d707ef
--- /dev/null
+++ b/js/src/tests/test262/language/global-code/decl-func.js
@@ -0,0 +1,50 @@
+// 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: Declaration of function where permissible
+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.
+ [...]
+ 17. For each production f in functionsToInitialize, do
+ a. Let fn be the sole element of the BoundNames of f.
+ b. Let fo be the result of performing InstantiateFunctionObject for f
+ with argument env.
+ c. Perform ? envRec.CreateGlobalFunctionBinding(fn, fo, false).
+ [...]
+
+ 8.1.1.4.16 CanDeclareGlobalFunction
+
+ 1. Let envRec be the global Environment Record for which the method was
+ invoked.
+ 2. Let ObjRec be envRec.[[ObjectRecord]].
+ 3. Let globalObject be the binding object for ObjRec.
+ 4. Let existingProp be ? globalObject.[[GetOwnProperty]](N).
+ 5. If existingProp is undefined, return ? IsExtensible(globalObject).
+includes: [propertyHelper.js]
+---*/
+
+assert.sameValue(
+ typeof brandNew, 'function', 'new binding on an extensible global object'
+);
+verifyEnumerable(this, 'brandNew');
+verifyWritable(this, 'brandNew');
+verifyNotConfigurable(this, 'brandNew');
+
+function brandNew() {}
+
+reportCompare(0, 0);