%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// 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. namespace object { transitioning macro ObjectFromEntriesFastCase(implicit context: Context)( iterable: JSAny): JSObject labels IfSlow { typeswitch (iterable) { case (array: FastJSArrayWithNoCustomIteration): { const elements: FixedArray = Cast<FixedArray>(array.elements) otherwise IfSlow; const length: Smi = array.length; const result: JSObject = NewJSObject(); for (let k: Smi = 0; k < length; ++k) { const value: JSAny = array::LoadElementOrUndefined(elements, k); const pair: KeyValuePair = collections::LoadKeyValuePairNoSideEffects(value) otherwise IfSlow; // StorePropertyInLiteral only handles Names and Numbers. Bail out if // the key is not one of those types. Note that JSReceivers should // always bail to the slow path, as calling Symbol.toPrimitive, // toString, or valueOf could invalidate assumptions about the // iterable. typeswitch (pair.key) { case (Name): { SetPropertyInLiteral(result, pair.key, pair.value); } case (Number): { SetPropertyInLiteral(result, pair.key, pair.value); } case (oddball: Oddball): { SetPropertyInLiteral(result, oddball.to_string, pair.value); } case (JSAny): { goto IfSlow; } } } return result; } case (JSAny): { goto IfSlow; } } } transitioning javascript builtin ObjectFromEntries( js-implicit context: NativeContext, receiver: JSAny)(...arguments): JSAny { const iterable: JSAny = arguments[0]; try { if (IsNullOrUndefined(iterable)) goto Throw; return ObjectFromEntriesFastCase(iterable) otherwise IfSlow; } label IfSlow { const result: JSObject = NewJSObject(); const fastIteratorResultMap: Map = GetIteratorResultMap(); let i: iterator::IteratorRecord = iterator::GetIterator(iterable); try { assert(!IsNullOrUndefined(i.object)); while (true) { const step: JSReceiver = iterator::IteratorStep(i, fastIteratorResultMap) otherwise return result; const iteratorValue: JSAny = iterator::IteratorValue(step, fastIteratorResultMap); const pair: KeyValuePair = collections::LoadKeyValuePair(iteratorValue); CreateDataProperty(result, pair.key, pair.value); } return result; } catch (e) deferred { iterator::IteratorCloseOnException(i); ReThrow(context, e); } } label Throw deferred { ThrowTypeError(MessageTemplate::kNotIterable); } } } // namespace object