Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Copyright 2025 by Google, Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-Intl.Segmenter.prototype.segment
description: Checks the "name" property of %IntlSegmentsPrototype%[%Symbol.iterator%]
features: [Intl.Segmenter]
---*/
let ss = (new Intl.Segmenter()).segment("123")[Symbol.iterator].name;
assert.sameValue("[Symbol.iterator]", ss);