summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/no-date-value.js
blob: 0ed5661d0a2af4537983a81cd3d51be4ee609a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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();
});

reportCompare(0, 0);