summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/built-ins/Date/prototype/setYear/this-not-date.js
blob: 15614f98e3ca09b27472827149cc0f1b303e0dc9 (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.setyear
es6id: B.2.4.2
es5id: B.2.5
description: Behavior when "this" value has no [[DateValue]] internal slot
info: |
    1. Let t be ? thisTimeValue(this value).
---*/

var setYear = Date.prototype.setYear;

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

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

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

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

reportCompare(0, 0);