Lines Matching refs:index
827 index: 0,
851 // 6. Let index be object’s index.
854 const { index, kind, target } = object
860 // 10. If index is greater than or equal to len, then return
862 if (index >= len) {
866 // 11. Let pair be the entry in values at index index.
867 const pair = values[index]
869 // 12. Set object’s index to index + 1.
870 object.index = index + 1