2 * Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
3 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
4 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. All rights reserved.
5 * Copyright (C) 2007 Eric Seidel (eric@webkit.org)
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
27 #include "DatePrototype.h"
28 #include "ErrorConstructor.h"
29 #include "GetterSetter.h"
30 #include "JSFunction.h"
31 #include "JSGlobalObject.h"
32 #include "NativeErrorConstructor.h"
33 #include "ObjectPrototype.h"
34 #include "PropertyDescriptor.h"
35 #include "PropertyNameArray.h"
38 #include "Operations.h"
40 #include <wtf/Assertions.h>
44 ASSERT_CLASS_FITS_IN_CELL(JSObject
);
45 ASSERT_CLASS_FITS_IN_CELL(JSNonFinalObject
);
46 ASSERT_CLASS_FITS_IN_CELL(JSFinalObject
);
48 const char* StrictModeReadonlyPropertyWriteError
= "Attempted to assign to readonly property.";
50 const ClassInfo
JSObject::s_info
= { "Object", 0, 0, 0 };
52 static inline void getClassPropertyNames(ExecState
* exec
, const ClassInfo
* classInfo
, PropertyNameArray
& propertyNames
, EnumerationMode mode
)
54 // Add properties from the static hashtables of properties
55 for (; classInfo
; classInfo
= classInfo
->parentClass
) {
56 const HashTable
* table
= classInfo
->propHashTable(exec
);
59 table
->initializeIfNeeded(exec
);
62 int hashSizeMask
= table
->compactSize
- 1;
63 const HashEntry
* entry
= table
->table
;
64 for (int i
= 0; i
<= hashSizeMask
; ++i
, ++entry
) {
65 if (entry
->key() && (!(entry
->attributes() & DontEnum
) || (mode
== IncludeDontEnumProperties
)))
66 propertyNames
.add(entry
->key());
71 void JSObject::visitChildren(SlotVisitor
& visitor
)
73 ASSERT_GC_OBJECT_INHERITS(this, &s_info
);
75 bool wasCheckingForDefaultMarkViolation
= visitor
.m_isCheckingForDefaultMarkViolation
;
76 visitor
.m_isCheckingForDefaultMarkViolation
= false;
79 visitChildrenDirect(visitor
);
82 visitor
.m_isCheckingForDefaultMarkViolation
= wasCheckingForDefaultMarkViolation
;
86 UString
JSObject::className() const
88 const ClassInfo
* info
= classInfo();
90 return info
->className
;
93 bool JSObject::getOwnPropertySlot(ExecState
* exec
, unsigned propertyName
, PropertySlot
& slot
)
95 return getOwnPropertySlot(exec
, Identifier::from(exec
, propertyName
), slot
);
98 static void throwSetterError(ExecState
* exec
)
100 throwError(exec
, createTypeError(exec
, "setting a property that has only a getter"));
104 void JSObject::put(ExecState
* exec
, const Identifier
& propertyName
, JSValue value
, PutPropertySlot
& slot
)
107 ASSERT(!Heap::heap(value
) || Heap::heap(value
) == Heap::heap(this));
109 if (propertyName
== exec
->propertyNames().underscoreProto
) {
110 // Setting __proto__ to a non-object, non-null value is silently ignored to match Mozilla.
111 if (!value
.isObject() && !value
.isNull())
113 if (!setPrototypeWithCycleCheck(exec
->globalData(), value
))
114 throwError(exec
, createError(exec
, "cyclic __proto__ value"));
118 // Check if there are any setters or getters in the prototype chain
120 for (JSObject
* obj
= this; !obj
->structure()->hasGetterSetterProperties(); obj
= asObject(prototype
)) {
121 prototype
= obj
->prototype();
122 if (prototype
.isNull()) {
123 if (!putDirectInternal(exec
->globalData(), propertyName
, value
, 0, true, slot
) && slot
.isStrictMode())
124 throwTypeError(exec
, StrictModeReadonlyPropertyWriteError
);
130 JSCell
* specificValue
;
131 if ((m_structure
->get(exec
->globalData(), propertyName
, attributes
, specificValue
) != WTF::notFound
) && attributes
& ReadOnly
) {
132 if (slot
.isStrictMode())
133 throwError(exec
, createTypeError(exec
, StrictModeReadonlyPropertyWriteError
));
137 for (JSObject
* obj
= this; ; obj
= asObject(prototype
)) {
138 if (JSValue gs
= obj
->getDirect(exec
->globalData(), propertyName
)) {
139 if (gs
.isGetterSetter()) {
140 JSObject
* setterFunc
= asGetterSetter(gs
)->setter();
142 throwSetterError(exec
);
147 CallType callType
= setterFunc
->getCallData(callData
);
148 MarkedArgumentBuffer args
;
150 call(exec
, setterFunc
, callType
, callData
, this, args
);
154 // If there's an existing property on the object or one of its
155 // prototypes it should be replaced, so break here.
159 prototype
= obj
->prototype();
160 if (prototype
.isNull())
164 if (!putDirectInternal(exec
->globalData(), propertyName
, value
, 0, true, slot
) && slot
.isStrictMode())
165 throwTypeError(exec
, StrictModeReadonlyPropertyWriteError
);
169 void JSObject::put(ExecState
* exec
, unsigned propertyName
, JSValue value
)
171 PutPropertySlot slot
;
172 put(exec
, Identifier::from(exec
, propertyName
), value
, slot
);
175 void JSObject::putWithAttributes(JSGlobalData
* globalData
, const Identifier
& propertyName
, JSValue value
, unsigned attributes
, bool checkReadOnly
, PutPropertySlot
& slot
)
177 putDirectInternal(*globalData
, propertyName
, value
, attributes
, checkReadOnly
, slot
);
180 void JSObject::putWithAttributes(JSGlobalData
* globalData
, const Identifier
& propertyName
, JSValue value
, unsigned attributes
)
182 putDirectInternal(*globalData
, propertyName
, value
, attributes
);
185 void JSObject::putWithAttributes(JSGlobalData
* globalData
, unsigned propertyName
, JSValue value
, unsigned attributes
)
187 putWithAttributes(globalData
, Identifier::from(globalData
, propertyName
), value
, attributes
);
190 void JSObject::putWithAttributes(ExecState
* exec
, const Identifier
& propertyName
, JSValue value
, unsigned attributes
, bool checkReadOnly
, PutPropertySlot
& slot
)
192 putDirectInternal(exec
->globalData(), propertyName
, value
, attributes
, checkReadOnly
, slot
);
195 void JSObject::putWithAttributes(ExecState
* exec
, const Identifier
& propertyName
, JSValue value
, unsigned attributes
)
197 putDirectInternal(exec
->globalData(), propertyName
, value
, attributes
);
200 void JSObject::putWithAttributes(ExecState
* exec
, unsigned propertyName
, JSValue value
, unsigned attributes
)
202 putWithAttributes(exec
, Identifier::from(exec
, propertyName
), value
, attributes
);
205 bool JSObject::hasProperty(ExecState
* exec
, const Identifier
& propertyName
) const
208 return const_cast<JSObject
*>(this)->getPropertySlot(exec
, propertyName
, slot
);
211 bool JSObject::hasProperty(ExecState
* exec
, unsigned propertyName
) const
214 return const_cast<JSObject
*>(this)->getPropertySlot(exec
, propertyName
, slot
);
218 bool JSObject::deleteProperty(ExecState
* exec
, const Identifier
& propertyName
)
221 JSCell
* specificValue
;
222 if (m_structure
->get(exec
->globalData(), propertyName
, attributes
, specificValue
) != WTF::notFound
) {
223 if ((attributes
& DontDelete
))
225 removeDirect(exec
->globalData(), propertyName
);
229 // Look in the static hashtable of properties
230 const HashEntry
* entry
= findPropertyHashEntry(exec
, propertyName
);
231 if (entry
&& entry
->attributes() & DontDelete
)
232 return false; // this builtin property can't be deleted
234 // FIXME: Should the code here actually do some deletion?
238 bool JSObject::hasOwnProperty(ExecState
* exec
, const Identifier
& propertyName
) const
241 return const_cast<JSObject
*>(this)->getOwnPropertySlot(exec
, propertyName
, slot
);
244 bool JSObject::deleteProperty(ExecState
* exec
, unsigned propertyName
)
246 return deleteProperty(exec
, Identifier::from(exec
, propertyName
));
249 static ALWAYS_INLINE JSValue
callDefaultValueFunction(ExecState
* exec
, const JSObject
* object
, const Identifier
& propertyName
)
251 JSValue function
= object
->get(exec
, propertyName
);
253 CallType callType
= getCallData(function
, callData
);
254 if (callType
== CallTypeNone
)
255 return exec
->exception();
257 // Prevent "toString" and "valueOf" from observing execution if an exception
259 if (exec
->hadException())
260 return exec
->exception();
262 JSValue result
= call(exec
, function
, callType
, callData
, const_cast<JSObject
*>(object
), exec
->emptyList());
263 ASSERT(!result
.isGetterSetter());
264 if (exec
->hadException())
265 return exec
->exception();
266 if (result
.isObject())
271 bool JSObject::getPrimitiveNumber(ExecState
* exec
, double& number
, JSValue
& result
)
273 result
= defaultValue(exec
, PreferNumber
);
274 number
= result
.toNumber(exec
);
275 return !result
.isString();
279 JSValue
JSObject::defaultValue(ExecState
* exec
, PreferredPrimitiveType hint
) const
281 // Must call toString first for Date objects.
282 if ((hint
== PreferString
) || (hint
!= PreferNumber
&& prototype() == exec
->lexicalGlobalObject()->datePrototype())) {
283 JSValue value
= callDefaultValueFunction(exec
, this, exec
->propertyNames().toString
);
286 value
= callDefaultValueFunction(exec
, this, exec
->propertyNames().valueOf
);
290 JSValue value
= callDefaultValueFunction(exec
, this, exec
->propertyNames().valueOf
);
293 value
= callDefaultValueFunction(exec
, this, exec
->propertyNames().toString
);
298 ASSERT(!exec
->hadException());
300 return throwError(exec
, createTypeError(exec
, "No default value"));
303 const HashEntry
* JSObject::findPropertyHashEntry(ExecState
* exec
, const Identifier
& propertyName
) const
305 for (const ClassInfo
* info
= classInfo(); info
; info
= info
->parentClass
) {
306 if (const HashTable
* propHashTable
= info
->propHashTable(exec
)) {
307 if (const HashEntry
* entry
= propHashTable
->entry(exec
, propertyName
))
314 void JSObject::defineGetter(ExecState
* exec
, const Identifier
& propertyName
, JSObject
* getterFunction
, unsigned attributes
)
316 JSValue object
= getDirect(exec
->globalData(), propertyName
);
317 if (object
&& object
.isGetterSetter()) {
318 ASSERT(m_structure
->hasGetterSetterProperties());
319 asGetterSetter(object
)->setGetter(exec
->globalData(), getterFunction
);
323 JSGlobalData
& globalData
= exec
->globalData();
324 PutPropertySlot slot
;
325 GetterSetter
* getterSetter
= new (exec
) GetterSetter(exec
);
326 putDirectInternal(globalData
, propertyName
, getterSetter
, attributes
| Getter
, true, slot
);
328 // putDirect will change our Structure if we add a new property. For
329 // getters and setters, though, we also need to change our Structure
330 // if we override an existing non-getter or non-setter.
331 if (slot
.type() != PutPropertySlot::NewProperty
) {
332 if (!m_structure
->isDictionary())
333 setStructure(exec
->globalData(), Structure::getterSetterTransition(globalData
, m_structure
.get()));
336 m_structure
->setHasGetterSetterProperties(true);
337 getterSetter
->setGetter(globalData
, getterFunction
);
340 void JSObject::defineSetter(ExecState
* exec
, const Identifier
& propertyName
, JSObject
* setterFunction
, unsigned attributes
)
342 JSValue object
= getDirect(exec
->globalData(), propertyName
);
343 if (object
&& object
.isGetterSetter()) {
344 ASSERT(m_structure
->hasGetterSetterProperties());
345 asGetterSetter(object
)->setSetter(exec
->globalData(), setterFunction
);
349 PutPropertySlot slot
;
350 GetterSetter
* getterSetter
= new (exec
) GetterSetter(exec
);
351 putDirectInternal(exec
->globalData(), propertyName
, getterSetter
, attributes
| Setter
, true, slot
);
353 // putDirect will change our Structure if we add a new property. For
354 // getters and setters, though, we also need to change our Structure
355 // if we override an existing non-getter or non-setter.
356 if (slot
.type() != PutPropertySlot::NewProperty
) {
357 if (!m_structure
->isDictionary())
358 setStructure(exec
->globalData(), Structure::getterSetterTransition(exec
->globalData(), m_structure
.get()));
361 m_structure
->setHasGetterSetterProperties(true);
362 getterSetter
->setSetter(exec
->globalData(), setterFunction
);
365 JSValue
JSObject::lookupGetter(ExecState
* exec
, const Identifier
& propertyName
)
367 JSObject
* object
= this;
369 if (JSValue value
= object
->getDirect(exec
->globalData(), propertyName
)) {
370 if (!value
.isGetterSetter())
371 return jsUndefined();
372 JSObject
* functionObject
= asGetterSetter(value
)->getter();
374 return jsUndefined();
375 return functionObject
;
378 if (!object
->prototype() || !object
->prototype().isObject())
379 return jsUndefined();
380 object
= asObject(object
->prototype());
384 JSValue
JSObject::lookupSetter(ExecState
* exec
, const Identifier
& propertyName
)
386 JSObject
* object
= this;
388 if (JSValue value
= object
->getDirect(exec
->globalData(), propertyName
)) {
389 if (!value
.isGetterSetter())
390 return jsUndefined();
391 JSObject
* functionObject
= asGetterSetter(value
)->setter();
393 return jsUndefined();
394 return functionObject
;
397 if (!object
->prototype() || !object
->prototype().isObject())
398 return jsUndefined();
399 object
= asObject(object
->prototype());
403 bool JSObject::hasInstance(ExecState
* exec
, JSValue value
, JSValue proto
)
405 if (!value
.isObject())
408 if (!proto
.isObject()) {
409 throwError(exec
, createTypeError(exec
, "instanceof called on an object with an invalid prototype property."));
413 JSObject
* object
= asObject(value
);
414 while ((object
= object
->prototype().getObject())) {
421 bool JSObject::propertyIsEnumerable(ExecState
* exec
, const Identifier
& propertyName
) const
423 PropertyDescriptor descriptor
;
424 if (!const_cast<JSObject
*>(this)->getOwnPropertyDescriptor(exec
, propertyName
, descriptor
))
426 return descriptor
.enumerable();
429 bool JSObject::getPropertySpecificValue(ExecState
* exec
, const Identifier
& propertyName
, JSCell
*& specificValue
) const
432 if (m_structure
->get(exec
->globalData(), propertyName
, attributes
, specificValue
) != WTF::notFound
)
435 // This could be a function within the static table? - should probably
436 // also look in the hash? This currently should not be a problem, since
437 // we've currently always call 'get' first, which should have populated
438 // the normal storage.
442 void JSObject::getPropertyNames(ExecState
* exec
, PropertyNameArray
& propertyNames
, EnumerationMode mode
)
444 getOwnPropertyNames(exec
, propertyNames
, mode
);
446 if (prototype().isNull())
449 JSObject
* prototype
= asObject(this->prototype());
451 if (prototype
->structure()->typeInfo().overridesGetPropertyNames()) {
452 prototype
->getPropertyNames(exec
, propertyNames
, mode
);
455 prototype
->getOwnPropertyNames(exec
, propertyNames
, mode
);
456 JSValue nextProto
= prototype
->prototype();
457 if (nextProto
.isNull())
459 prototype
= asObject(nextProto
);
463 void JSObject::getOwnPropertyNames(ExecState
* exec
, PropertyNameArray
& propertyNames
, EnumerationMode mode
)
465 m_structure
->getPropertyNames(exec
->globalData(), propertyNames
, mode
);
466 getClassPropertyNames(exec
, classInfo(), propertyNames
, mode
);
469 bool JSObject::toBoolean(ExecState
*) const
474 double JSObject::toNumber(ExecState
* exec
) const
476 JSValue primitive
= toPrimitive(exec
, PreferNumber
);
477 if (exec
->hadException()) // should be picked up soon in Nodes.cpp
479 return primitive
.toNumber(exec
);
482 UString
JSObject::toString(ExecState
* exec
) const
484 JSValue primitive
= toPrimitive(exec
, PreferString
);
485 if (exec
->hadException())
487 return primitive
.toString(exec
);
490 JSObject
* JSObject::toObject(ExecState
*, JSGlobalObject
*) const
492 return const_cast<JSObject
*>(this);
495 JSObject
* JSObject::toThisObject(ExecState
*) const
497 return const_cast<JSObject
*>(this);
500 JSValue
JSObject::toStrictThisObject(ExecState
*) const
502 return const_cast<JSObject
*>(this);
505 JSObject
* JSObject::unwrappedObject()
510 void JSObject::seal(JSGlobalData
& globalData
)
512 if (isSealed(globalData
))
514 preventExtensions(globalData
);
515 setStructure(globalData
, Structure::sealTransition(globalData
, m_structure
.get()));
518 void JSObject::freeze(JSGlobalData
& globalData
)
520 if (isFrozen(globalData
))
522 preventExtensions(globalData
);
523 setStructure(globalData
, Structure::freezeTransition(globalData
, m_structure
.get()));
526 void JSObject::preventExtensions(JSGlobalData
& globalData
)
529 setStructure(globalData
, Structure::preventExtensionsTransition(globalData
, m_structure
.get()));
532 void JSObject::removeDirect(JSGlobalData
& globalData
, const Identifier
& propertyName
)
534 if (m_structure
->get(globalData
, propertyName
) == WTF::notFound
)
538 if (m_structure
->isUncacheableDictionary()) {
539 offset
= m_structure
->removePropertyWithoutTransition(globalData
, propertyName
);
540 if (offset
!= WTF::notFound
)
541 putUndefinedAtDirectOffset(offset
);
545 setStructure(globalData
, Structure::removePropertyTransition(globalData
, m_structure
.get(), propertyName
, offset
));
546 if (offset
!= WTF::notFound
)
547 putUndefinedAtDirectOffset(offset
);
550 void JSObject::putDirectFunction(ExecState
* exec
, InternalFunction
* function
, unsigned attr
)
552 putDirectFunction(exec
->globalData(), Identifier(exec
, function
->name(exec
)), function
, attr
);
555 void JSObject::putDirectFunction(ExecState
* exec
, JSFunction
* function
, unsigned attr
)
557 putDirectFunction(exec
->globalData(), Identifier(exec
, function
->name(exec
)), function
, attr
);
560 void JSObject::putDirectFunctionWithoutTransition(ExecState
* exec
, InternalFunction
* function
, unsigned attr
)
562 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, function
->name(exec
)), function
, attr
);
565 void JSObject::putDirectFunctionWithoutTransition(ExecState
* exec
, JSFunction
* function
, unsigned attr
)
567 putDirectFunctionWithoutTransition(exec
->globalData(), Identifier(exec
, function
->name(exec
)), function
, attr
);
570 NEVER_INLINE
void JSObject::fillGetterPropertySlot(PropertySlot
& slot
, WriteBarrierBase
<Unknown
>* location
)
572 if (JSObject
* getterFunction
= asGetterSetter(location
->get())->getter()) {
573 if (!structure()->isDictionary())
574 slot
.setCacheableGetterSlot(this, getterFunction
, offsetForLocation(location
));
576 slot
.setGetterSlot(getterFunction
);
581 Structure
* JSObject::createInheritorID(JSGlobalData
& globalData
)
583 m_inheritorID
.set(globalData
, this, createEmptyObjectStructure(globalData
, this));
584 ASSERT(m_inheritorID
->isEmpty());
585 return m_inheritorID
.get();
588 void JSObject::allocatePropertyStorage(size_t oldSize
, size_t newSize
)
590 ASSERT(newSize
> oldSize
);
592 // It's important that this function not rely on m_structure, since
593 // we might be in the middle of a transition.
594 bool wasInline
= (oldSize
< JSObject::baseExternalStorageCapacity
);
596 PropertyStorage oldPropertyStorage
= m_propertyStorage
;
597 PropertyStorage newPropertyStorage
= new WriteBarrierBase
<Unknown
>[newSize
];
599 for (unsigned i
= 0; i
< oldSize
; ++i
)
600 newPropertyStorage
[i
] = oldPropertyStorage
[i
];
603 delete [] oldPropertyStorage
;
605 m_propertyStorage
= newPropertyStorage
;
608 bool JSObject::getOwnPropertyDescriptor(ExecState
* exec
, const Identifier
& propertyName
, PropertyDescriptor
& descriptor
)
610 unsigned attributes
= 0;
612 size_t offset
= m_structure
->get(exec
->globalData(), propertyName
, attributes
, cell
);
613 if (offset
== WTF::notFound
)
615 descriptor
.setDescriptor(getDirectOffset(offset
), attributes
);
619 bool JSObject::getPropertyDescriptor(ExecState
* exec
, const Identifier
& propertyName
, PropertyDescriptor
& descriptor
)
621 JSObject
* object
= this;
623 if (object
->getOwnPropertyDescriptor(exec
, propertyName
, descriptor
))
625 JSValue prototype
= object
->prototype();
626 if (!prototype
.isObject())
628 object
= asObject(prototype
);
632 static bool putDescriptor(ExecState
* exec
, JSObject
* target
, const Identifier
& propertyName
, PropertyDescriptor
& descriptor
, unsigned attributes
, const PropertyDescriptor
& oldDescriptor
)
634 if (descriptor
.isGenericDescriptor() || descriptor
.isDataDescriptor()) {
635 if (descriptor
.isGenericDescriptor() && oldDescriptor
.isAccessorDescriptor()) {
636 GetterSetter
* accessor
= new (exec
) GetterSetter(exec
);
637 if (oldDescriptor
.getter()) {
638 attributes
|= Getter
;
639 accessor
->setGetter(exec
->globalData(), asObject(oldDescriptor
.getter()));
641 if (oldDescriptor
.setter()) {
642 attributes
|= Setter
;
643 accessor
->setSetter(exec
->globalData(), asObject(oldDescriptor
.setter()));
645 target
->putWithAttributes(exec
, propertyName
, accessor
, attributes
);
648 JSValue newValue
= jsUndefined();
649 if (descriptor
.value())
650 newValue
= descriptor
.value();
651 else if (oldDescriptor
.value())
652 newValue
= oldDescriptor
.value();
653 target
->putWithAttributes(exec
, propertyName
, newValue
, attributes
& ~(Getter
| Setter
));
656 attributes
&= ~ReadOnly
;
657 if (descriptor
.getter() && descriptor
.getter().isObject())
658 target
->defineGetter(exec
, propertyName
, asObject(descriptor
.getter()), attributes
);
659 if (exec
->hadException())
661 if (descriptor
.setter() && descriptor
.setter().isObject())
662 target
->defineSetter(exec
, propertyName
, asObject(descriptor
.setter()), attributes
);
663 return !exec
->hadException();
666 bool JSObject::defineOwnProperty(ExecState
* exec
, const Identifier
& propertyName
, PropertyDescriptor
& descriptor
, bool throwException
)
668 // If we have a new property we can just put it on normally
669 PropertyDescriptor current
;
670 if (!getOwnPropertyDescriptor(exec
, propertyName
, current
)) {
671 // unless extensions are prevented!
672 if (!isExtensible()) {
674 throwError(exec
, createTypeError(exec
, "Attempting to define property on object that is not extensible."));
677 PropertyDescriptor oldDescriptor
;
678 oldDescriptor
.setValue(jsUndefined());
679 return putDescriptor(exec
, this, propertyName
, descriptor
, descriptor
.attributes(), oldDescriptor
);
682 if (descriptor
.isEmpty())
685 if (current
.equalTo(exec
, descriptor
))
688 // Filter out invalid changes
689 if (!current
.configurable()) {
690 if (descriptor
.configurable()) {
692 throwError(exec
, createTypeError(exec
, "Attempting to configurable attribute of unconfigurable property."));
695 if (descriptor
.enumerablePresent() && descriptor
.enumerable() != current
.enumerable()) {
697 throwError(exec
, createTypeError(exec
, "Attempting to change enumerable attribute of unconfigurable property."));
702 // A generic descriptor is simply changing the attributes of an existing property
703 if (descriptor
.isGenericDescriptor()) {
704 if (!current
.attributesEqual(descriptor
)) {
705 deleteProperty(exec
, propertyName
);
706 putDescriptor(exec
, this, propertyName
, descriptor
, current
.attributesWithOverride(descriptor
), current
);
711 // Changing between a normal property or an accessor property
712 if (descriptor
.isDataDescriptor() != current
.isDataDescriptor()) {
713 if (!current
.configurable()) {
715 throwError(exec
, createTypeError(exec
, "Attempting to change access mechanism for an unconfigurable property."));
718 deleteProperty(exec
, propertyName
);
719 return putDescriptor(exec
, this, propertyName
, descriptor
, current
.attributesWithOverride(descriptor
), current
);
722 // Changing the value and attributes of an existing property
723 if (descriptor
.isDataDescriptor()) {
724 if (!current
.configurable()) {
725 if (!current
.writable() && descriptor
.writable()) {
727 throwError(exec
, createTypeError(exec
, "Attempting to change writable attribute of unconfigurable property."));
730 if (!current
.writable()) {
731 if (descriptor
.value() || !JSValue::strictEqual(exec
, current
.value(), descriptor
.value())) {
733 throwError(exec
, createTypeError(exec
, "Attempting to change value of a readonly property."));
737 } else if (current
.attributesEqual(descriptor
)) {
738 if (!descriptor
.value())
740 PutPropertySlot slot
;
741 put(exec
, propertyName
, descriptor
.value(), slot
);
742 if (exec
->hadException())
746 deleteProperty(exec
, propertyName
);
747 return putDescriptor(exec
, this, propertyName
, descriptor
, current
.attributesWithOverride(descriptor
), current
);
750 // Changing the accessor functions of an existing accessor property
751 ASSERT(descriptor
.isAccessorDescriptor());
752 if (!current
.configurable()) {
753 if (descriptor
.setterPresent() && !(current
.setterPresent() && JSValue::strictEqual(exec
, current
.setter(), descriptor
.setter()))) {
755 throwError(exec
, createTypeError(exec
, "Attempting to change the setter of an unconfigurable property."));
758 if (descriptor
.getterPresent() && !(current
.getterPresent() && JSValue::strictEqual(exec
, current
.getter(), descriptor
.getter()))) {
760 throwError(exec
, createTypeError(exec
, "Attempting to change the getter of an unconfigurable property."));
764 JSValue accessor
= getDirect(exec
->globalData(), propertyName
);
767 GetterSetter
* getterSetter
= asGetterSetter(accessor
);
768 if (current
.attributesEqual(descriptor
)) {
769 if (descriptor
.setter())
770 getterSetter
->setSetter(exec
->globalData(), asObject(descriptor
.setter()));
771 if (descriptor
.getter())
772 getterSetter
->setGetter(exec
->globalData(), asObject(descriptor
.getter()));
775 deleteProperty(exec
, propertyName
);
776 unsigned attrs
= current
.attributesWithOverride(descriptor
);
777 if (descriptor
.setter())
779 if (descriptor
.getter())
781 putDirect(exec
->globalData(), propertyName
, getterSetter
, attrs
);
785 JSObject
* throwTypeError(ExecState
* exec
, const UString
& message
)
787 return throwError(exec
, createTypeError(exec
, message
));