summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/super/in-constructor.js
blob: e635c94ed41a970197b68668bf722a41fc1d1291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2014 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-makesuperpropertyreference
description: >
    class super in constructor
---*/
var calls = 0;
class B {}
B.prototype.x = 42;

class C extends B {
  constructor() {
    super();
    calls++;
    assert.sameValue(super.x, 42, "The value of `super.x` is `42`");
  }
}

new C;
assert.sameValue(calls, 1, "The value of `calls` is `1`");

reportCompare(0, 0);