Lines Matching defs:PropertyDescriptor
76 * v8::PropertyDescriptor d(Local<Value>()), false);
83 * v8::PropertyDescriptor d(v8::Undefined(isolate));
86 * v8::PropertyDescriptor d(v8::Undefined(isolate), Local<Value>()));
89 class V8_EXPORT PropertyDescriptor {
92 PropertyDescriptor();
95 explicit PropertyDescriptor(Local<Value> value);
98 PropertyDescriptor(Local<Value> value, bool writable);
101 PropertyDescriptor(Local<Value> get, Local<Value> set);
103 ~PropertyDescriptor();
127 PropertyDescriptor(const PropertyDescriptor&) = delete;
128 void operator=(const PropertyDescriptor&) = delete;
292 * The PropertyDescriptor can change when redefining a property.
297 Local<Context> context, Local<Name> key, PropertyDescriptor& descriptor);