browser.js |
|
0 |
length.js |
---
es6id: 21.1.4
description: Instances has the own property length
info: |
21.1.4 Properties of String Instances
...
String instances have a length property, and a set of enumerable properties
with integer indexed names.
includes: [propertyHelper.js]
--- |
727 |
regular-subclassing.js |
---
es6id: 21.1.1
description: Subclassing the String object
info: |
21.1.1 The String Constructor
...
The String constructor is designed to be subclassable. It may be used as the
value of an extends clause of a class definition. Subclass constructors that
intend to inherit the specified String behaviour must include a super call to
the String constructor to create and initialize the subclass instance with a
[[StringData]] internal slot.
--- |
722 |
shell.js |
|
0 |
super-must-be-called.js |
---
es6id: 21.1.1
description: Super need to be called to initialize internals
info: |
21.1.1 The String Constructor
...
The String constructor is designed to be subclassable. It may be used as the
value of an extends clause of a class definition. Subclass constructors that
intend to inherit the specified String behaviour must include a super call to
the String constructor to create and initialize the subclass instance with a
[[StringData]] internal slot.
--- |
826 |