Ignore:
Timestamp:
Sep 29, 2008, 6:14:26 PM (17 years ago)
Author:
Darin Adler
Message:

JavaScriptCore:

2008-09-29 Darin Adler <Darin Adler>

Reviewed by Sam Weinig.

  • JavaScriptCore.exp: Updated since JSGlobalObject::init no longer takes a parameter.
  • VM/Machine.cpp: (JSC::Machine::execute): Removed m_registerFile argument for ExecState constructors.
  • kjs/DebuggerCallFrame.cpp: (JSC::DebuggerCallFrame::evaluate): Removed globalThisValue argument for ExecState constructor.
  • kjs/ExecState.cpp: (JSC::ExecState::ExecState): Removed globalThisValue and registerFile arguments to constructors.
  • kjs/ExecState.h: Removed m_globalThisValue and m_registerFile data members.
  • kjs/JSGlobalObject.cpp: (JSC::JSGlobalObject::init): Removed globalThisValue argument for ExecState constructor.
  • kjs/JSGlobalObject.h: (JSC::JSGlobalObject::JSGlobalObject): Got rid of parameter for the init function.

WebCore:

2008-09-29 Darin Adler <Darin Adler>

Reviewed by Sam Weinig.

  • bindings/js/JSDOMWindowBase.cpp: (WebCore::JSDOMWindowBase::JSDOMWindowBase): Removed globalThisValue argument for base class constructor.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/JSGlobalObject.cpp

    r37086 r37088  
    123123}
    124124
    125 void JSGlobalObject::init(JSObject* thisValue)
     125void JSGlobalObject::init()
    126126{
    127127    ASSERT(JSLock::currentThreadIsHoldingLock());
     
    140140    d()->debugger = 0;
    141141
    142     d()->globalExec.set(new ExecState(this, thisValue, d()->globalCallFrame + RegisterFile::CallFrameHeaderSize));
     142    d()->globalExec.set(new ExecState(this, d()->globalCallFrame + RegisterFile::CallFrameHeaderSize));
    143143
    144144    d()->profileGroup = 0;
Note: See TracChangeset for help on using the changeset viewer.