Changeset 41846 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Mar 19, 2009, 5:03:57 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalObject.cpp
r41126 r41846 342 342 { 343 343 setPrototype(prototype); 344 lastInPrototypeChain(this)->setPrototype(d()->objectPrototype); 344 345 JSObject* oldLastInPrototypeChain = lastInPrototypeChain(this); 346 JSObject* objectPrototype = d()->objectPrototype; 347 if (oldLastInPrototypeChain != objectPrototype) 348 oldLastInPrototypeChain->setPrototype(objectPrototype); 345 349 } 346 350
Note:
See TracChangeset
for help on using the changeset viewer.