+void PropertyDescriptor::setCustomDescriptor(unsigned attributes)
+{
+ m_attributes = attributes | Accessor | CustomAccessor;
+ m_attributes &= ~ReadOnly;
+ m_seenAttributes = EnumerablePresent | ConfigurablePresent;
+ setGetter(jsUndefined());
+ setSetter(jsUndefined());
+ m_value = JSValue();
+}
+