summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/toString/proxy-function.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/built-ins/Object/prototype/toString/proxy-function.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Object/prototype/toString/proxy-function.js67
1 files changed, 67 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/prototype/toString/proxy-function.js b/js/src/tests/test262/built-ins/Object/prototype/toString/proxy-function.js
new file mode 100644
index 0000000000..70633a87e4
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Object/prototype/toString/proxy-function.js
@@ -0,0 +1,67 @@
+// Copyright (C) 2016 Apple Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-object.prototype.tostring
+description: Proxy of an function is treated as an function
+info: |
+ [...]
+
+ 9.5.14 ProxyCreate(target, handler)
+
+ [...]
+ 7. If IsCallable(target) is true, then
+ a. Set the [[Call]] internal method of P as specified in 9.5.12.
+ [...]
+
+features: [generators, async-functions, Proxy, Symbol.toStringTag]
+---*/
+
+var functionProxy = new Proxy(function() {}, {});
+var functionProxyProxy = new Proxy(functionProxy, {});
+
+assert.sameValue(
+ Object.prototype.toString.call(functionProxy), '[object Function]', 'function proxy'
+);
+assert.sameValue(
+ Object.prototype.toString.call(functionProxyProxy),
+ '[object Function]',
+ 'proxy for function proxy'
+);
+
+var arrowProxy = new Proxy(() => {}, {});
+var arrowProxyProxy = new Proxy(arrowProxy, {});
+
+assert.sameValue(
+ Object.prototype.toString.call(arrowProxy), '[object Function]', 'arrow function proxy'
+);
+assert.sameValue(
+ Object.prototype.toString.call(arrowProxyProxy),
+ '[object Function]',
+ 'proxy for arrow function proxy'
+);
+
+var generatorProxy = new Proxy(function*() {}, {});
+var generatorProxyProxy = new Proxy(generatorProxy, {});
+
+assert.sameValue(
+ Object.prototype.toString.call(generatorProxy), '[object GeneratorFunction]', 'generator function proxy'
+);
+assert.sameValue(
+ Object.prototype.toString.call(generatorProxyProxy),
+ '[object GeneratorFunction]',
+ 'proxy for generator function proxy'
+);
+
+var asyncProxy = new Proxy(async function() {}, {});
+var asyncProxyProxy = new Proxy(asyncProxy, {});
+
+assert.sameValue(
+ Object.prototype.toString.call(asyncProxy), '[object AsyncFunction]', 'async function proxy'
+);
+assert.sameValue(
+ Object.prototype.toString.call(asyncProxyProxy),
+ '[object AsyncFunction]',
+ 'proxy for async function proxy'
+);
+
+reportCompare(0, 0);