Lines Matching defs:groups
1231 // j. Let namedCaptures be ? Get(result, "groups").
1241 emptyArrLength = 4; // 4: «matched, pos, string, and groups»
1258 replacerArgs->Set(thread, index + 3, namedCaptures.GetTaggedValue()); // 3: position of groups
1926 // a. Let groups be OrdinaryObjectCreate(null).
1928 // a. Let groups be undefined.
1929 JSMutableHandle<JSTaggedValue> groups(thread, JSTaggedValue::Undefined());
1933 groups.Update(nullObj.GetTaggedValue());
1935 // 8. Perform ! CreateDataPropertyOrThrow(A, "groups", groups).
1938 JSObject::CreateDataProperty(thread, results, groupsKey, groups);
1947 // i. Assert: groups is not undefined.
1948 // ii. Perform ! CreateDataPropertyOrThrow(groups, groupNames[i - 1], matchIndexPair).
1965 JSHandle<JSObject> groupObject = JSHandle<JSObject>::Cast(groups);
2035 // a. Let groups be OrdinaryObjectCreate(null).
2038 // a. Let groups be undefined.
2042 JSMutableHandle<JSTaggedValue> groups(thread, JSTaggedValue::Undefined());
2048 groups.Update(nullObj.GetTaggedValue());
2053 results->SetPropertyInlinedPropsWithRep(thread, EXEC_RESULT_GROUPS_OFFSET, groups.GetTaggedValue());
2055 // Perform ! CreateDataPropertyOrThrow(A, "groups", groups).
2057 JSObject::CreateDataProperty(thread, results, groupsKey, groups);
2083 JSHandle<JSObject> groupObject = JSHandle<JSObject>::Cast(groups);
2881 JSTaggedValue groups = ObjectFastOperator::FastGetPropertyByValue(
2884 return groups;