Changeset 447 for trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
- Timestamp:
- 08/20/08 13:23:52 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/JSGlobalObject.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
r440 r447 44 44 #include "GlobalEvalFunction.h" 45 45 #include "JSGlobalObjectFunctions.h" 46 #include "JSLock.h" 46 47 #include "Machine.h" 47 48 #include "MathObject.h" … … 79 80 JSGlobalObject::~JSGlobalObject() 80 81 { 82 ASSERT(JSLock::currentThreadIsHoldingLock()); 83 81 84 if (d()->debugger) 82 85 d()->debugger->detach(this); … … 110 113 void JSGlobalObject::init(JSObject* thisValue) 111 114 { 115 ASSERT(JSLock::currentThreadIsHoldingLock()); 116 112 117 d()->globalData = Heap::heap(this)->globalData(); 113 118
