Lines Matching defs:actualIndex
3071 int64_t actualIndex = 0;
3073 // 4. If relativeIndex ≥ 0, let actualIndex be relativeIndex.
3074 // 5. Else, let actualIndex be len + relativeIndex.
3075 // 6. If actualIndex ≥ len or actualIndex < 0, throw a RangeError exception.
3077 actualIndex = relativeIndex;
3079 actualIndex = len + relativeIndex;
3081 if (actualIndex >= len || actualIndex < 0) {
3091 return JSStableArray::With(thread, JSHandle<JSArray>::Cast(thisHandle), len, actualIndex, value);
3097 // b. If k is actualIndex, let fromValue be value.
3105 if (k == actualIndex) {