summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/class/this-check-after-scalar-replacement-in-derived-class-constructor.js
diff options
context:
space:
mode:
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();