Lines Matching defs:attributes
144 // Reflect.defineProperty (target, propertyKey, attributes)
154 // attributes
155 JSHandle<JSObject> attributes =
157 // attributes value
161 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), valueKey, value);
162 // attributes writable
165 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), writableKey, writable);
166 // attributes enumerable
169 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), enumerableKey, enumerable);
170 // attributes configurable
173 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), configurableKey, configurable);
180 ecmaRuntimeCallInfo->SetCallArg(2, JSTaggedValue(*attributes));