Changeset 427 for trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
- Timestamp:
- 08/01/08 14:47:24 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/JSGlobalObject.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
r402 r427 44 44 #include "GlobalEvalFunction.h" 45 45 #include "JSGlobalObjectFunctions.h" 46 #include "JSLock.h"47 46 #include "Machine.h" 48 47 #include "MathObject.h" … … 78 77 JSGlobalObject::~JSGlobalObject() 79 78 { 80 ASSERT(JSLock::currentThreadIsHoldingLock());81 82 79 if (d()->debugger) 83 80 d()->debugger->detach(this); … … 111 108 void JSGlobalObject::init(JSObject* thisValue) 112 109 { 113 ASSERT(JSLock::currentThreadIsHoldingLock());114 115 110 d()->globalData = Heap::heap(this)->globalData(); 116 111
