summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/bug1732601.js
blob: af4d995cb24c42b6de9ae363947c18551a1015ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// |jit-test| --fast-warmup

function Mixin(Target) {
    var c = class extends Target {};
    Target.prototype.x = 1; // Add shadowing property to disable teleporting.
    return c;
}
function MixinFoo(Target) {
    var c = class extends Target {
        get foo() { return 2; }
        set foo(value) {}
    };
    Target.prototype.x = 1; // Add shadowing property to disable teleporting.
    return c;
}

class Base {}
class MyClass extends Mixin(Mixin(Mixin(Mixin(Mixin(Mixin(Mixin(Mixin(Mixin(Mixin(Mixin(MixinFoo(Base)))))))))))) {}

function test() {
    var instance = new MyClass();
    assertEq(instance.x, 1);
    for (var i = 0; i < 500; i++) {
        assertEq(instance.foo, 2);
    }
}
test();