Lines Matching defs:object
141 JSHandle<JSTaggedValue> object,
148 // a. Return ! ToBoolean(? Call(instOfHandler, target, «object»)).
158 info->SetCallArg(object.GetTaggedValue());
170 // 6. Return ? OrdinaryHasInstance(target, object).
171 bool res = JSFunction::OrdinaryHasInstance(thread, target, object);
617 JSHandle<JSTaggedValue> object =
623 res = JSObject::CallGetter(thread, AccessorData::Cast(receiver.GetTaggedObject()), object);
628 res = JSTaggedValue::GetProperty(thread, object, propKey).GetValue().GetTaggedValue();
641 JSHandle<JSTaggedValue> object =
648 JSTaggedValue::SetProperty(thread, object, propKey, value, true);
1653 THROW_TYPE_ERROR(thread, "Inner return result is not object");
2917 THROW_TYPE_ERROR_AND_RETURN(thread, "new object is not object", JSTaggedValue::Exception());
3057 JSTaggedValue object = RuntimeOptConstruct(thread, ctor, ctor, undefined, args);
3059 if (!object.IsUndefined() && !object.IsECMAObject() && !JSHandle<JSFunction>(ctor)->IsBase()) {
3060 THROW_TYPE_ERROR_AND_RETURN(thread, "Derived constructor must return object or undefined",
3063 return object;