summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/built-ins/Date/prototype/getYear/this-not-date.js
blob: cb6888f80ae6f04bbdb35af8b7274ff2a87b5bc0 (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
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-date.prototype.getyear
es6id: B.2.4.1
es5id: B.2.4
description: Behavior when `this` value has no [[DateValue]] internal slot
info: |
    1. Let t be ? thisTimeValue(this value).
---*/

var getYear = Date.prototype.getYear;

assert.sameValue(typeof getYear, 'function');

assert.throws(TypeError, function() {
  getYear.call({});
}, 'object');

assert.throws(TypeError, function() {
  getYear.call(undefined);
}, 'undefined');

assert.throws(TypeError, function() {
  getYear.call(null);
}, 'null');

reportCompare(0, 0);