| browser.js |
|
0 |
- |
| constructor.js |
---
es6id: 19.5.6.3.1
description: >
The initial value of EvalError.prototype.constructor is the EvalError object.
info: |
The initial value of the constructor property of the prototype for a given NativeError
constructor is the corresponding intrinsic object %NativeError% (19.5.6.1).
17 ECMAScript Standard Built-in Objects:
Every other data property described in clauses 18 through 26 and in Annex B.2 has
the attributes { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true }
unless otherwise specified.
includes: [propertyHelper.js]
--- |
916 |
- |
| message.js |
---
es6id: 19.5.6.3.2
description: >
The initial value of EvalError.prototype.message is the empty string.
info: |
The initial value of the message property of the prototype for a given NativeError
constructor is the empty String.
17 ECMAScript Standard Built-in Objects:
Every other data property described in clauses 18 through 26 and in Annex B.2 has
the attributes { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true }
unless otherwise specified.
includes: [propertyHelper.js]
--- |
846 |
- |
| name.js |
---
es6id: 19.5.6.3.3
description: >
The initial value of EvalError.prototype.name is "EvalError".
info: |
The initial value of the name property of the prototype for a given NativeError
constructor is a string consisting of the name of the constructor (the name used
instead of NativeError).
17 ECMAScript Standard Built-in Objects:
Every other data property described in clauses 18 through 26 and in Annex B.2 has
the attributes { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true }
unless otherwise specified.
includes: [propertyHelper.js]
--- |
876 |
- |
| not-error-object.js |
---
es6id: 19.5.6.3
description: >
EvalError.prototype is not an error object instance.
info: |
Each NativeError prototype object is an ordinary object. It is not an
Error instance and does not have an [[ErrorData]] internal slot.
--- |
489 |
- |
| proto.js |
---
es6id: 19.5.6.3
description: >
The prototype of EvalError.prototype is Error.prototype.
info: |
The value of the [[Prototype]] internal slot of each NativeError prototype
object is the intrinsic object %ErrorPrototype% (19.5.3).
--- |
480 |
- |
| shell.js |
|
0 |
- |