Lines Matching defs:PropertyDescriptor
78 * v8::PropertyDescriptor d(Local<Value>()), false);
85 * v8::PropertyDescriptor d(v8::Undefined(isolate));
88 * v8::PropertyDescriptor d(v8::Undefined(isolate), Local<Value>()));
91 class V8_EXPORT PropertyDescriptor {
94 PropertyDescriptor();
97 explicit PropertyDescriptor(Local<Value> value);
100 PropertyDescriptor(Local<Value> value, bool writable);
103 PropertyDescriptor(Local<Value> get, Local<Value> set);
105 ~PropertyDescriptor();
129 PropertyDescriptor(const PropertyDescriptor&) = delete;
130 void operator=(const PropertyDescriptor&) = delete;
286 // The PropertyDescriptor can change when redefining a property.
290 Local<Context> context, Local<Name> key, PropertyDescriptor& descriptor);