using Jint.Collections; using Jint.Native.Object; using Jint.Native.Symbol; using Jint.Runtime; using Jint.Runtime.Descriptors; namespace Jint.Native.Intl; /// /// https://tc39.es/ecma402/#sec-properties-of-intl-segmenter-prototype-object /// internal sealed class SegmenterPrototype : Prototype { private readonly SegmenterConstructor _constructor; public SegmenterPrototype( Engine engine, Realm realm, SegmenterConstructor constructor, ObjectPrototype objectPrototype) : base(engine, realm) { _prototype = objectPrototype; _constructor = constructor; } protected override void Initialize() { var properties = new PropertyDictionary(2, checkExistingKeys: false) { ["constructor"] = new PropertyDescriptor(_constructor, true, false, true), }; SetProperties(properties); var symbols = new SymbolDictionary(1) { [GlobalSymbolRegistry.ToStringTag] = new("Intl.Segmenter", PropertyFlag.Configurable) }; SetSymbols(symbols); } }