Show
Ignore:
Timestamp:
08/01/08 14:47:24 (5 months ago)
Author:
sroret
Message:

merge with webkit revision 35510

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/JavaScriptCore/kjs/JSGlobalObject.cpp

    r402 r427  
    4444#include "GlobalEvalFunction.h" 
    4545#include "JSGlobalObjectFunctions.h" 
    46 #include "JSLock.h" 
    4746#include "Machine.h" 
    4847#include "MathObject.h" 
     
    7877JSGlobalObject::~JSGlobalObject() 
    7978{ 
    80     ASSERT(JSLock::currentThreadIsHoldingLock()); 
    81  
    8279    if (d()->debugger) 
    8380        d()->debugger->detach(this); 
     
    111108void JSGlobalObject::init(JSObject* thisValue) 
    112109{ 
    113     ASSERT(JSLock::currentThreadIsHoldingLock()); 
    114  
    115110    d()->globalData = Heap::heap(this)->globalData(); 
    116111