summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/subclass/builtin-objects/Date/regular-subclassing.js
blob: 41619f26b42dab504dcec40a5e7f2f6d874989d2 (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
30
31
32
33
34
35
36
37
38
39
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 20.3.2
description: Subclassing the String object
info: |
  20.3.2 The Date Constructor

  ...

  The Date constructor is a single function whose behaviour is overloaded based
  upon the number and types of its arguments.

  The Date constructor is designed to be subclassable. It may be used as the
  value of an extends clause of a class definition. Subclass constructors that
  intend to inherit the specified Date behaviour must include a super call to
  the Date constructor to create and initialize the subclass instance with a
  [[DateValue]] internal slot.
---*/

class D extends Date {}

var d1 = new D(1859, '10', 24, 11);
assert.sameValue(d1.getFullYear(), 1859);
assert.sameValue(d1.getMonth(), 10);
assert.sameValue(d1.getDate(), 24);

var d2 = new D(-3474558000000);
assert.sameValue(d2.getUTCFullYear(), 1859);
assert.sameValue(d2.getUTCMonth(), 10);
assert.sameValue(d2.getUTCDate(), 24);

var d3 = new D();
var d4 = new Date();
assert.sameValue(d3.getFullYear(), d4.getFullYear());
assert.sameValue(d3.getMonth(), d4.getMonth());
assert.sameValue(d3.getDate(), d4.getDate());

reportCompare(0, 0);