40e34e3af4
Per change in https://github.com/tc39/ecma402/pull/459/ Bug: v8:10732 Change-Id: I2ef21e8b450cbf9c61f987c61f3ba7d6959db81a Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2309149 Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Commit-Queue: Frank Tang <ftang@chromium.org> Cr-Commit-Position: refs/heads/master@{#68976}
34 lines
800 B
JavaScript
34 lines
800 B
JavaScript
// 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.
|
|
|
|
// Throws only once during construction.
|
|
// Check for all getters to prevent regression.
|
|
// Preserve the order of getter initialization.
|
|
let getCount = 0;
|
|
|
|
new Intl.Collator(['en-US'], {
|
|
get usage() {
|
|
assertEquals(0, getCount++);
|
|
},
|
|
get localeMatcher() {
|
|
assertEquals(1, getCount++);
|
|
},
|
|
get collation() {
|
|
assertEquals(2, getCount++);
|
|
},
|
|
get numeric() {
|
|
assertEquals(3, getCount++);
|
|
},
|
|
get caseFirst() {
|
|
assertEquals(4, getCount++);
|
|
},
|
|
get sensitivity() {
|
|
assertEquals(5, getCount++);
|
|
},
|
|
get ignorePunctuation() {
|
|
assertEquals(6, getCount++);
|
|
},
|
|
});
|
|
assertEquals(7, getCount);
|