summaryrefslogtreecommitdiff
path: root/deps/v8/test/intl/regress-8030.js
blob: cf0e1aa2a9c71a0c18e9903c45373fe371346cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2018 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.

var locales = ["tlh", "id", "en"];
var referenceRelativeTimeFormat = new Intl.RelativeTimeFormat(locales);
var referenceFormatted = referenceRelativeTimeFormat.format(3, "day");

class MyFormat extends Intl.RelativeTimeFormat {
  constructor(locales, options) {
    super(locales, options);
    // could initialize MyRelativeTimeFormat properties
  }
  // could add methods to MyRelativeTimeFormat.prototype
}

var format = new MyFormat(locales);
var actual = format.format(3, "day");
assertEquals(actual, referenceFormatted);