summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/subclassing.js
blob: b7f2b7134fbea84a3740e2f5ef11abadfac7d617 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// 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-value
description: Error retrieving `Symbol.toPrimitive` method from object value
info: |
  3. If NewTarget is not undefined, then
     [...]
     c. Let O be ? OrdinaryCreateFromConstructor(NewTarget, "%DatePrototype%",
        « [[DateValue]] »).
     [...]

  OrdinaryCreateFromConstructor ( constructor, intrinsicDefaultProto [ ,
  internalSlotsList ] )

  [...]
  2. Let proto be ? GetPrototypeFromConstructor(constructor,
     intrinsicDefaultProto).
  3. Return ObjectCreate(proto, internalSlotsList).
features: [Reflect]
---*/

var callCount = 0;
var Ctor = function() {
  callCount += 1;
};
var instance;

instance = Reflect.construct(Date, [64], Ctor);

assert.sameValue(
  Object.getPrototypeOf(instance),
  Ctor.prototype,
  'constructor defines an object `prototype` property'
);
assert.sameValue(callCount, 0, 'constructor not invoked');
assert.sameValue(
  Date.prototype.getTime.call(instance),
  64,
  'proper subclass has a [[DateValue]] slot'
);

Ctor.prototype = null;
instance = Reflect.construct(Date, [64], Ctor);

assert.sameValue(
  Object.getPrototypeOf(instance),
  Date.prototype,
  'constructor does not defines an object `prototype` property'
);
assert.sameValue(callCount, 0, 'constructor not invoked');
assert.sameValue(
  instance.getTime(), 64, 'direct instance has a [[DateValue]] slot'
);

reportCompare(0, 0);