| // Copyright (C) 2016 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| description: Super need to be called to initialize Boolean internals |
| 19.3.1 The Boolean Constructor |
| Subclass constructors that intend to inherit the specified Boolean behaviour |
| must include a super call to the Boolean constructor to create and initialize |
| the subclass instance with a [[BooleanData]] internal slot. |
| class Bln extends Boolean { |
| // Boolean internals are not initialized |
| assert.throws(ReferenceError, function() { |
| class Bln2 extends Boolean { |
| assert(b instanceof Boolean); |