summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/class/this-check-after-scalar-replacement-in-derived-class-constructor.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/jit-test/tests/class/this-check-after-scalar-replacement-in-derived-class-constructor.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/class/this-check-after-scalar-replacement-in-derived-class-constructor.js')
-rw-r--r--js/src/jit-test/tests/class/this-check-after-scalar-replacement-in-derived-class-constructor.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/class/this-check-after-scalar-replacement-in-derived-class-constructor.js b/js/src/jit-test/tests/class/this-check-after-scalar-replacement-in-derived-class-constructor.js
new file mode 100644
index 0000000000..257e723f05
--- /dev/null
+++ b/js/src/jit-test/tests/class/this-check-after-scalar-replacement-in-derived-class-constructor.js
@@ -0,0 +1,29 @@
+// Create a derived class with a default class constructor.
+class C extends class {} {}
+
+// The default constructor of a derived class is small enough to be inlinable.
+assertEq(isSmallFunction(C), true);
+
+// Bound functions have a configurable "prototype" property.
+const BF = function(){}.bind();
+
+function testBoundFunction() {
+ for (let i = 0; i <= 1000; ++i) {
+ let newTarget = i < 1000 ? C : BF;
+ Reflect.construct(C, [], newTarget);
+ }
+}
+
+for (let i = 0; i < 2; ++i) testBoundFunction();
+
+// Proxy have a configurable "prototype" property.
+const P = new Proxy(function(){}, {});
+
+function testProxy() {
+ for (let i = 0; i <= 1000; ++i) {
+ let newTarget = i < 1000 ? C : P;
+ Reflect.construct(C, [], newTarget);
+ }
+}
+
+for (let i = 0; i < 2; ++i) testProxy();