1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- using Jint.Collections;
- using Jint.Native.Function;
- using Jint.Native.Object;
- using Jint.Native.Symbol;
- using Jint.Runtime;
- using Jint.Runtime.Descriptors;
- using Jint.Runtime.Interop;
- namespace Jint.Native.Set;
- internal sealed class SetConstructor : Constructor
- {
- private static readonly JsString _functionName = new("Set");
- internal SetConstructor(
- Engine engine,
- Realm realm,
- FunctionPrototype functionPrototype,
- ObjectPrototype objectPrototype)
- : base(engine, realm, _functionName)
- {
- _prototype = functionPrototype;
- PrototypeObject = new SetPrototype(engine, realm, this, objectPrototype);
- _length = new PropertyDescriptor(0, PropertyFlag.Configurable);
- _prototypeDescriptor = new PropertyDescriptor(PrototypeObject, PropertyFlag.AllForbidden);
- }
- internal SetPrototype PrototypeObject { get; }
- protected override void Initialize()
- {
- var symbols = new SymbolDictionary(1)
- {
- [GlobalSymbolRegistry.Species] = new GetSetPropertyDescriptor(get: new ClrFunction(_engine, "get [Symbol.species]", Species, 0, PropertyFlag.Configurable), set: Undefined, PropertyFlag.Configurable)
- };
- SetSymbols(symbols);
- }
- private static JsValue Species(JsValue thisObject, JsValue[] arguments)
- {
- return thisObject;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-set-iterable
- /// </summary>
- public override ObjectInstance Construct(JsValue[] arguments, JsValue newTarget)
- {
- if (newTarget.IsUndefined())
- {
- ExceptionHelper.ThrowTypeError(_engine.Realm);
- }
- var set = OrdinaryCreateFromConstructor(
- newTarget,
- static intrinsics => intrinsics.Set.PrototypeObject,
- static (Engine engine, Realm _, object? _) => new JsSet(engine));
- if (arguments.Length > 0 && !arguments[0].IsNullOrUndefined())
- {
- var adderValue = set.Get("add");
- var adder = adderValue as ICallable;
- if (adder is null)
- {
- ExceptionHelper.ThrowTypeError(_engine.Realm, "add must be callable");
- }
- var iterable = arguments.At(0).GetIterator(_realm);
- try
- {
- var args = new JsValue[1];
- do
- {
- if (!iterable.TryIteratorStep(out var next))
- {
- return set;
- }
- var nextValue = next.Get(CommonProperties.Value);
- args[0] = nextValue;
- adder.Call(set, args);
- } while (true);
- }
- catch
- {
- iterable.Close(CompletionType.Throw);
- throw;
- }
- }
- return set;
- }
- }
|