blob: 8cf072adca618b551d6e5cdc922ba406114a5c4d [file] [log] [blame]
// 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)'
);