browser.js |
|
0 |
lastIndex.js |
---
es6id: 21.2.6.1
description: Instances has the own property lastIndex
info: |
21.2.6.1 lastIndex
The value of the lastIndex property specifies the String index at which to
start the next match. It is coerced to an integer when used (see 21.2.5.2.2).
This property shall have the attributes { [[Writable]]: true, [[Enumerable]]:
false, [[Configurable]]: false }.
includes: [propertyHelper.js]
--- |
759 |
regular-subclassing.js |
---
es6id: 21.2.3
description: Subclassing the RegExp object
info: |
21.2.3 The RegExp Constructor
...
The RegExp 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 RegExp behaviour must include a super call to
the RegExp constructor to create and initialize subclass instances with the
necessary internal slots.
--- |
753 |
shell.js |
|
0 |
super-must-be-called.js |
---
es6id: 21.2.3
description: Super need to be called to initialize internals
info: |
21.2.3 The RegExp Constructor
...
The RegExp 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 RegExp behaviour must include a super call to
the RegExp constructor to create and initialize subclass instances with the
necessary internal slots.
--- |
826 |