Ignore:
Timestamp:
Jun 19, 2008, 8:30:09 PM (17 years ago)
Author:
[email protected]
Message:

Reviewed by Geoff.

File:
1 edited

Legend:

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

    r34582 r34684  
    3838    , m_globalData(globalObject->globalData())
    3939    , m_prev(0)
    40     , m_machine(0)
    4140    , m_registerFile(0)
    4241    , m_scopeChain(globalScopeChain)
     
    4544}
    4645
    47 ExecState::ExecState(ExecState* exec, Machine* machine, RegisterFile* registerFile, ScopeChainNode* scopeChain, int callFrameOffset)
     46ExecState::ExecState(ExecState* exec, RegisterFile* registerFile, ScopeChainNode* scopeChain, int callFrameOffset)
    4847    : m_globalObject(exec->m_globalObject)
    4948    , m_globalThisValue(exec->m_globalThisValue)
     
    5150    , m_globalData(exec->m_globalData)
    5251    , m_prev(exec)
    53     , m_machine(machine)
    5452    , m_registerFile(registerFile)
    5553    , m_scopeChain(scopeChain)
Note: See TracChangeset for help on using the changeset viewer.