Home | History | Annotate | Download | only in src

Lines Matching defs:props

6404   // 2. Let props be ToObject(Properties).
6405 // 3. ReturnIfAbrupt(props).
6406 Handle<JSReceiver> props;
6407 if (!Object::ToObject(isolate, properties).ToHandle(&props)) {
6412 // 4. Let keys be props.[[OwnPropertyKeys]]().
6417 JSReceiver::GetKeys(props, JSReceiver::OWN_ONLY, ALL_PROPERTIES), Object);
6425 // 7a. Let propDesc be props.[[GetOwnProperty]](nextKey).
6429 isolate, props, next_key, &success, LookupIterator::HIDDEN);
6437 // 7c i. Let descObj be Get(props, nextKey).