Changeset 35293 in webkit for trunk/JavaScriptCore/API/JSObjectRef.cpp
- Timestamp:
- Jul 23, 2008, 3:15:16 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSObjectRef.cpp
r35196 r35293 75 75 return toRef(new (exec) JSObject(exec->lexicalGlobalObject()->objectPrototype())); // slightly more efficient 76 76 77 JSValue* jsPrototype = jsClass->prototype( ctx);77 JSValue* jsPrototype = jsClass->prototype(exec); 78 78 if (!jsPrototype) 79 79 jsPrototype = exec->lexicalGlobalObject()->objectPrototype(); … … 100 100 101 101 JSValue* jsPrototype = jsClass 102 ? jsClass->prototype( ctx)102 ? jsClass->prototype(exec) 103 103 : exec->dynamicGlobalObject()->objectPrototype(); 104 104
Note:
See TracChangeset
for help on using the changeset viewer.