blob: d454717f44ce28388d81d538128ec78d1fdc5914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.prototype.tostring
description: >
Else if O has an [[ErrorData]] internal slot, let builtinTag be "Error".
---*/
assert.sameValue(
Error().toString(),
'Error',
'Error().toString() returns "Error"'
);
Error.prototype.toString = Object.prototype.toString;
assert.sameValue(
Error().toString(),
'[object Error]',
'Error().toString() returns "[object Error]" (Object.prototype.toString)'
);
reportCompare(0, 0);
|