| 15.10.6.js |
---
es5id: 15.10.6
description: RegExp.prototype is itself a not RegExp
--- |
345 |
- |
| browser.js |
|
0 |
- |
| dotAll |
|
|
- |
| exec |
|
|
- |
| flags |
|
|
- |
| global |
|
|
- |
| hasIndices |
|
|
- |
| ignoreCase |
|
|
- |
| multiline |
|
|
- |
| no-regexp-matcher.js |
---
esid: sec-properties-of-the-regexp-prototype-object
description: >
The RegExp prototype object does not have a [[RegExpMatcher]] internal slot
info: |
The RegExp prototype object is an ordinary object. It is not a RegExp
instance and does not have a [[RegExpMatcher]] internal slot or any of the
other internal slots of RegExp instance objects.
21.2.5.2 RegExp.prototype.exec
1. Let R be the this value.
2. If Type(R) is not Object, throw a TypeError exception.
3. If R does not have a [[RegExpMatcher]] internal slot, throw a TypeError
exception.
--- |
815 |
- |
| S15.10.5.1_A1.js |
---
info: The RegExp has property prototype
es5id: 15.10.5.1_A1
description: Checking RegExp.prototype property
--- |
392 |
- |
| S15.10.5.1_A2.js |
---
info: The RegExp.prototype property has the attribute DontEnum
es5id: 15.10.5.1_A2
description: Checking if enumerating the RegExp.prototype property fails
--- |
784 |
- |
| S15.10.5.1_A3.js |
---
info: The RegExp.prototype property has the attribute DontDelete
es5id: 15.10.5.1_A3
description: Checking if deleting the RegExp.prototype property fails
includes: [propertyHelper.js]
--- |
868 |
- |
| S15.10.5.1_A4.js |
---
info: The RegExp.prototype property has the attribute ReadOnly
es5id: 15.10.5.1_A4
description: Checking if varying the RegExp.prototype property fails
includes: [propertyHelper.js]
--- |
738 |
- |
| S15.10.6.1_A1_T1.js |
---
info: |
The initial value of RegExp.prototype.constructor is the built-in RegExp
constructor
es5id: 15.10.6.1_A1_T1
description: Compare RegExp.prototype.constructor with RegExp
--- |
503 |
- |
| S15.10.6.1_A1_T2.js |
---
info: |
The initial value of RegExp.prototype.constructor is the built-in RegExp
constructor
es5id: 15.10.6.1_A1_T2
description: >
Compare instance.constructor !== RegExp, where instance is new
RegExp.prototype.constructor
--- |
770 |
- |
| S15.10.6_A1_T1.js |
---
info: |
The value of the internal [[Prototype]] property of the RegExp prototype
object is the Object prototype
es5id: 15.10.6_A1_T1
description: Checking Object.prototype.isPrototypeOf(RegExp.prototype)
--- |
530 |
- |
| S15.10.6_A1_T2.js |
---
info: |
The value of the internal [[Prototype]] property of the RegExp prototype
object is the Object prototype
es5id: 15.10.6_A1_T2
description: >
Add new property to Object.prototype and check it of
RegExp.prototype
--- |
547 |
- |
| shell.js |
|
0 |
- |
| source |
|
|
- |
| sticky |
|
|
- |
| Symbol.match |
|
|
- |
| Symbol.matchAll |
|
|
- |
| Symbol.replace |
|
|
- |
| Symbol.search |
|
|
- |
| Symbol.split |
|
|
- |
| test |
|
|
- |
| toString |
|
|
- |
| unicode |
|
|
- |
| unicodeSets |
|
|
- |