Changeset 34684 in webkit for trunk/JavaScriptCore/kjs/ExecState.cpp
- Timestamp:
- Jun 19, 2008, 8:30:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.cpp
r34582 r34684 38 38 , m_globalData(globalObject->globalData()) 39 39 , m_prev(0) 40 , m_machine(0)41 40 , m_registerFile(0) 42 41 , m_scopeChain(globalScopeChain) … … 45 44 } 46 45 47 ExecState::ExecState(ExecState* exec, Machine* machine,RegisterFile* registerFile, ScopeChainNode* scopeChain, int callFrameOffset)46 ExecState::ExecState(ExecState* exec, RegisterFile* registerFile, ScopeChainNode* scopeChain, int callFrameOffset) 48 47 : m_globalObject(exec->m_globalObject) 49 48 , m_globalThisValue(exec->m_globalThisValue) … … 51 50 , m_globalData(exec->m_globalData) 52 51 , m_prev(exec) 53 , m_machine(machine)54 52 , m_registerFile(registerFile) 55 53 , m_scopeChain(scopeChain)
Note:
See TracChangeset
for help on using the changeset viewer.