test262/test/language/statements/class/super/in-constructor-superproperty-evaluation.js
Rick Waldron ecea13b04a SuperProperty evaluation order, must first call super()
- Invalid: super[super()]. Expects super() to be called prior to super property access.
2018-06-04 10:52:31 -04:00

18 lines
523 B
JavaScript

// 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');