summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/super/in-constructor-superproperty-evaluation.js
blob: 43ef9d6bc2c18de59f7daa9b40cb65a130cfd54f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2018 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-makesuperpropertyreference
description: >
  SuperProperty evaluation order: super() thisBinding initialization must occur first.
---*/
class Derived extends Object {
  constructor() {
    super[super()];
    throw new Test262Error();
  }
}

assert.throws(ReferenceError, function() {
  new Derived();
}, '`super[super()]` via `new Derived()` throws a ReferenceError');

reportCompare(0, 0);