mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 05:47:42 +00:00

PR-URL: https://github.com/nodejs/node/pull/37330 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
19 lines
509 B
JavaScript
19 lines
509 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.Segmenter(['en-US'], {
|
|
get localeMatcher() {
|
|
assertEquals(0, getCount++);
|
|
},
|
|
get granularity() {
|
|
assertEquals(1, getCount++);
|
|
},
|
|
});
|
|
assertEquals(2, getCount);
|