Test that Date.prototype has no [[DateValue]] slot

This commit is contained in:
Alexey Shvayka 2020-09-10 02:07:22 +03:00 committed by Rick Waldron
parent 9aef4bd5eb
commit 7a56df1119
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-properties-of-the-date-prototype-object
description: >
The Date Prototype object does not have a [[DateValue]] internal slot.
info: |
Properties of the Date Prototype Object
The Date prototype object:
[...]
* is not a Date instance and does not have a [[DateValue]] internal slot.
Date.prototype.getTime ( )
1. Return ? thisTimeValue(this value).
The abstract operation thisTimeValue takes argument value.
1. If Type(value) is Object and value has a [[DateValue]] internal slot, then
[...]
2. Throw a TypeError exception.
---*/
assert.throws(TypeError, function() {
Date.prototype.getTime();
});