Changeset 440 for trunk/JavaScriptCore/kjs/JSGlobalObject.h
- Timestamp:
- 08/18/08 11:14:49 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/JSGlobalObject.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r402 r440 78 78 { 79 79 } 80 81 virtual ~JSGlobalObjectData() 82 { 83 } 80 84 81 85 JSGlobalObject* next; … … 134 138 135 139 protected: 136 JSGlobalObject(JSValue* prototype, JS Object* globalThisValue)137 : JSVariableObject(prototype, new JSGlobalObjectData(this, globalThisValue))140 JSGlobalObject(JSValue* prototype, JSGlobalObjectData* d, JSObject* globalThisValue) 141 : JSVariableObject(prototype, d) 138 142 { 139 143 init(globalThisValue);
