3f270f34a1
Intl.DisplayNames was shipped in m81 and we now can remove the flag. https://www.chromestatus.com/features/4965112605573120 Bug: v8:8703 Change-Id: Ib65d787c1871aa1da38a22fdb9e369c680c7d2c9 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2163820 Commit-Queue: Frank Tang <ftang@chromium.org> Reviewed-by: Shu-yu Guo <syg@chromium.org> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Cr-Commit-Position: refs/heads/master@{#67382}
25 lines
616 B
JavaScript
25 lines
616 B
JavaScript
// Copyright 2019 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.
|
|
|
|
// Throws only once during construction.
|
|
// Check for all getters to prevent regression.
|
|
// Preserve the order of getter initialization.
|
|
let getCount = 0;
|
|
|
|
new Intl.DisplayNames(['en-US'], {
|
|
get localeMatcher() {
|
|
assertEquals(0, getCount++);
|
|
},
|
|
get style() {
|
|
assertEquals(1, getCount++);
|
|
},
|
|
get type() {
|
|
assertEquals(2, getCount++);
|
|
},
|
|
get fallback() {
|
|
assertEquals(3, getCount++);
|
|
},
|
|
});
|
|
assertEquals(4, getCount);
|