Changeset 197484 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Mar 2, 2016, 6:04:49 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r197467 r197484 1212 1212 } 1213 1213 1214 bool JSObject::setPrototype Of(JSObject* object, ExecState* exec, JSValue prototype)1214 bool JSObject::setPrototype(JSObject* object, ExecState* exec, JSValue prototype) 1215 1215 { 1216 1216 return object->setPrototypeWithCycleCheck(exec->vm(), exec, prototype); 1217 } 1218 1219 bool JSObject::setPrototype(VM& vm, ExecState* exec, JSValue prototype) 1220 { 1221 return methodTable(vm)->setPrototype(this, exec, prototype); 1217 1222 } 1218 1223 … … 1700 1705 { 1701 1706 return obj->isExtensibleImpl(); 1707 } 1708 1709 bool JSObject::isExtensible(ExecState* exec) 1710 { 1711 VM& vm = exec->vm(); 1712 return methodTable(vm)->isExtensible(this, exec); 1702 1713 } 1703 1714 … … 2864 2875 PropertyDescriptor current; 2865 2876 bool isCurrentDefined = getOwnPropertyDescriptor(exec, propertyName, current); 2866 bool isExtensible = isExtensibleInline(exec);2877 bool isExtensible = this->isExtensible(exec); 2867 2878 if (UNLIKELY(exec->hadException())) 2868 2879 return false;
Note:
See TracChangeset
for help on using the changeset viewer.