Lines Matching refs:be
2 // Use of this source code is governed by a BSD-style license that can be
13 // 1. Let O be ? ToObject(this value).
16 // 2. Let len be ? ToLength(? Get(O, "length")).
19 // 3. Let relativeTarget be ? ToInteger(target).
22 // 4. If relativeTarget < 0, let to be max((len + relativeTarget), 0);
23 // else let to be min(relativeTarget, len).
26 // 5. Let relativeStart be ? ToInteger(start).
29 // 6. If relativeStart < 0, let from be max((len + relativeStart), 0);
30 // else let from be min(relativeStart, len).
33 // 7. If end is undefined, let relativeEnd be len;
34 // else let relativeEnd be ? ToInteger(end).
40 // 8. If relativeEnd < 0, let final be max((len + relativeEnd), 0);
41 // else let final be min(relativeEnd, len).
44 // 9. Let count be min(final-from, len-to).
51 // a. Let direction be -1.
54 // b. Let from be from + count - 1.
57 // c. Let to be to + count - 1.
63 // a. Let fromKey be ! ToString(from).
64 // b. Let toKey be ! ToString(to).
65 // c. Let fromPresent be ? HasProperty(O, fromKey).
70 // i. Let fromVal be ? Get(O, fromKey).
80 // f. Let from be from + direction.
83 // g. Let to be to + direction.
86 // h. Let count be count - 1.