summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/class/member-expr-after-super.js
blob: fa965b24e52e269220a8b1fc9f7829032dc64b2a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

class Base {
    get test() {
        return "ok";
    }
}

class SuperThenProperty extends Base {
    constructor() {
        var result = super().test;
        return {result};
    }
}
assertEq(new SuperThenProperty().result, "ok");

class SuperThenMember extends Base {
    constructor() {
        var result = super()["tes" + String.fromCodePoint("t".codePointAt(0))];
        return {result};
    }
}
assertEq(new SuperThenMember().result, "ok");

class SuperThenCall extends Function {
    constructor() {
        var result = super("o, k", "return o + k;")("o", "k");
        return {result};
    }
}
assertEq(new SuperThenCall().result, "ok");

class SuperThenTemplateCall extends Function {
    constructor() {
        var result = super("cooked", "return cooked[0][0] + cooked.raw[0][1];")`ok`;
        return {result};
    }
}
assertEq(new SuperThenTemplateCall().result, "ok");

if (typeof reportCompare === "function")
    reportCompare(0, 0);