Changeset 37088 in webkit for trunk/JavaScriptCore/VM/Machine.cpp


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/VM/Machine.cpp

    r37087 r37088  
    889889        scopeChain = scopeChain->copy();
    890890
    891     ExecState newExec(exec, &m_registerFile, r);
     891    ExecState newExec(exec, r);
    892892
    893893    Profiler** profiler = Profiler::enabledProfilerReference();
     
    951951    initializeCallFrame(r, codeBlock, 0, scopeChain, 0, 0, argc, function);
    952952
    953     ExecState newExec(exec, &m_registerFile, r);
     953    ExecState newExec(exec, r);
    954954
    955955    Profiler** profiler = Profiler::enabledProfilerReference();
     
    10371037        scopeChain = scopeChain->copy();
    10381038
    1039     ExecState newExec(exec, &m_registerFile, r);
     1039    ExecState newExec(exec, r);
    10401040
    10411041    Profiler** profiler = Profiler::enabledProfilerReference();
Note: See TracChangeset for help on using the changeset viewer.