Lines Matching defs:fromValue
2126 JSHandle<JSTaggedValue> fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, k);
2128 JSArray::FastSetPropertyByValue(thread, thisObjVal, k - 1, fromValue);
2465 // i. Let fromValue be Get(O, from).
2466 // iii. Let status be CreateDataPropertyOrThrow(A, ToString(k), fromValue).
2477 JSHandle<JSTaggedValue> fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, fromKey);
2484 JSObject::CreateDataPropertyOrThrow(thread, newArrayHandle, toKey, fromValue);
2503 // 1. Let fromValue be Get(O, from).
2504 // 3. Let setStatus be Set(O, to, fromValue, true).
2520 JSHandle<JSTaggedValue> fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, fromKey);
2522 JSArray::FastSetPropertyByValue(thread, thisObjVal, toKey, fromValue);
2547 // 1. Let fromValue be Get(O, from).
2548 // 2. ReturnIfAbrupt(fromValue).
2549 // 3. Let setStatus be Set(O, to, fromValue, true).
2562 JSHandle<JSTaggedValue> fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, fromKey);
2564 JSArray::FastSetPropertyByValue(thread, thisObjVal, toKey, fromValue);
2759 // 1. Let fromValue be Get(O, from).
2760 // 2. ReturnIfAbrupt(fromValue).
2761 // 3. Let setStatus be Set(O, to, fromValue, true).
2780 JSHandle<JSTaggedValue> fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, fromKey);
2782 JSArray::FastSetPropertyByValue(thread, thisObjVal, toKey, fromValue);
3097 // b. If k is actualIndex, let fromValue be value.
3098 // c. Else, let fromValue be ? Get(O, Pk).
3099 // d. Perform ! CreateDataPropertyOrThrow(A, Pk, fromValue).
3102 JSHandle<JSTaggedValue> fromValue;
3106 fromValue = value;
3108 fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, fromKey);
3111 JSObject::CreateDataPropertyOrThrow(thread, newArrayHandle, fromKey, fromValue);
3278 // c. Let fromValue be ? Get(O, from).
3279 // d. Perform ! CreateDataPropertyOrThrow(A, Pi, fromValue).
3286 JSHandle<JSTaggedValue> fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, from);
3288 JSObject::CreateDataPropertyOrThrow(thread, newArrayHandle, pi, fromValue);
3478 // c. Let fromValue be ? Get(O, from).
3479 // d. Perform ! CreateDataPropertyOrThrow(A, Pk, fromValue).
3488 JSHandle<JSTaggedValue> fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, fromKey);
3490 JSObject::CreateDataPropertyOrThrow(thread, newArrayHandle, toKey, fromValue);