browser.js |
|
0 |
regular-subclassing.js |
---
es6id: 19.3.1
description: Subclassing Function
info: |
19.3.1 The Boolean Constructor
The Boolean constructor is designed to be subclassable. It may be used as the
value of an extends clause of a class definition.
...
--- |
670 |
shell.js |
|
0 |
super-must-be-called.js |
---
es6id: 19.3.1
description: Super need to be called to initialize Boolean internals
info: |
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.
--- |
796 |