Changeset 116578 in webkit for trunk/Source/JavaScriptCore/API/JSClassRef.cpp
- Timestamp:
- May 9, 2012, 5:04:25 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSClassRef.cpp
r116575 r116578 214 214 215 215 // Recursive, but should be good enough for our purposes 216 prototype = JSCallbackObject<JSNonFinalObject>::create(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->callbackObjectStructure(), prototypeClass, &jsClassData); // set jsClassData as the object's private data, so it can clear our reference on destruction216 JSObject* prototype = JSCallbackObject<JSNonFinalObject>::create(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->callbackObjectStructure(), prototypeClass, &jsClassData); // set jsClassData as the object's private data, so it can clear our reference on destruction 217 217 if (parentClass) { 218 218 if (JSObject* parentPrototype = parentClass->prototype(exec))
Note:
See TracChangeset
for help on using the changeset viewer.