Changeset 15310 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Jul 10, 2006, 2:17:26 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.h
r15224 r15310 106 106 * @param proto The prototype 107 107 */ 108 JSObject(JS Object *proto, bool destructorIsThreadSafe = true);108 JSObject(JSValue* proto, bool destructorIsThreadSafe = true); 109 109 110 110 /** … … 568 568 JSObject *throwError(ExecState *, ErrorType); 569 569 570 inline JSObject::JSObject(JS Object *proto, bool destructorIsThreadSafe)570 inline JSObject::JSObject(JSValue* proto, bool destructorIsThreadSafe) 571 571 : JSCell(destructorIsThreadSafe) 572 572 , _proto(proto)
Note:
See TracChangeset
for help on using the changeset viewer.