6fd503608a
1. fix year value between 100 and 9999 should use 4 digit padding without '+' prefix to sync with the latest spec in mjsunit/temporal/plain-date-time-to-json 2. Change the the toPlainDateTime to accept object with partial time fields to sync with current spect in test/mjsunit/temporal/plain-date-to-plain-date-time.js 3. Change the test to accept input parameter type to Number instead of BigInt for Instant fromEpochSeconds and from EpochMilliseconds in test/mjsunit/temporal/instant-from-epoch-milliseconds.js and test/mjsunit/temporal/instant-from-epoch-seconds.js Throw TypeError if the type is BigInt. 4. Change the return type of Instant epochSeconds and epochMilliseconds from BigInt to Number to sync with the spec in test/mjsunit/temporal/instant-constructor.js Spec text https://tc39.es/proposal-temporal/#sec-temporal-padisoyear https://tc39.es/proposal-temporal/#sec-temporal-totemporaltimerecord https://tc39.es/proposal-temporal/#sec-temporal.instant.fromepochmilliseconds https://tc39.es/proposal-temporal/#sec-temporal.instant.fromepochseconds https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.epochmilliseconds https://tc39.es/proposal-temporal/#sec-get-temporal.zoneddatetime.prototype.epochseconds Bug: v8:11544 Change-Id: Icd290905b65fdabbedece27e59c785635c212ec2 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3807122 Reviewed-by: Adam Klein <adamk@chromium.org> Commit-Queue: Frank Tang <ftang@chromium.org> Cr-Commit-Position: refs/heads/main@{#82185}
44 lines
2.0 KiB
JavaScript
44 lines
2.0 KiB
JavaScript
// Copyright 2021 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
// Flags: --harmony-temporal
|
|
|
|
let inst1 = new Temporal.Instant(1234567890123456789n);
|
|
assertEquals(1234567890123456789n , inst1.epochNanoseconds);
|
|
assertEquals(1234567890123456n , inst1.epochMicroseconds);
|
|
assertEquals(1234567890123 , inst1.epochMilliseconds);
|
|
assertEquals(1234567890 , inst1.epochSeconds);
|
|
|
|
let inst2 = new Temporal.Instant(-1234567890123456789n);
|
|
assertEquals(-1234567890123456789n , inst2.epochNanoseconds);
|
|
assertEquals(-1234567890123456n , inst2.epochMicroseconds);
|
|
assertEquals(-1234567890123 , inst2.epochMilliseconds);
|
|
assertEquals(-1234567890 , inst2.epochSeconds);
|
|
|
|
// 1. If NewTarget is undefined, then
|
|
// a. Throw a TypeError exception.
|
|
assertThrows(() => Temporal.Instant(1234567890123456789n), TypeError);
|
|
|
|
// 2. Let epochNanoseconds be ? ToBigInt(epochNanoseconds).
|
|
assertThrows(() => {let inst = new Temporal.Instant(undefined)},
|
|
TypeError);
|
|
assertThrows(() => {let inst = new Temporal.Instant(null)}, TypeError);
|
|
assertEquals(1n, (new Temporal.Instant(true)).epochNanoseconds);
|
|
assertEquals(0n, (new Temporal.Instant(false)).epochNanoseconds);
|
|
assertThrows(() => {let inst = Temporal.Instant(12345)}, TypeError);
|
|
assertEquals(1234567890123456789n,
|
|
(new Temporal.Instant("1234567890123456789")).epochNanoseconds);
|
|
assertThrows(() => {let inst = new Temporal.Instant(Symbol(12345n))},
|
|
TypeError);
|
|
|
|
// 3. If ! IsValidEpochNanoseconds(epochNanoseconds) is false,
|
|
// throw a RangeError exception.
|
|
assertThrows(() => {let inst = new Temporal.Instant(8640000000000000000001n)},
|
|
RangeError);
|
|
assertThrows(() => {let inst = new Temporal.Instant(-8640000000000000000001n)},
|
|
RangeError);
|
|
assertEquals(8640000000000000000000n,
|
|
(new Temporal.Instant(8640000000000000000000n)).epochNanoseconds);
|
|
assertEquals(-8640000000000000000000n,
|
|
(new Temporal.Instant(-8640000000000000000000n)).epochNanoseconds);
|