Changeset 34906 in webkit for trunk/JavaScriptCore/kjs/ExecState.cpp
- Timestamp:
- Jun 30, 2008, 10:45:21 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.cpp
r34684 r34906 40 40 , m_registerFile(0) 41 41 , m_scopeChain(globalScopeChain) 42 , m_callFrame Offset(-1)42 , m_callFrame(0) 43 43 { 44 44 } 45 45 46 ExecState::ExecState(ExecState* exec, RegisterFile* registerFile, ScopeChainNode* scopeChain, int callFrameOffset)46 ExecState::ExecState(ExecState* exec, RegisterFile* registerFile, ScopeChainNode* scopeChain, Register* callFrame) 47 47 : m_globalObject(exec->m_globalObject) 48 48 , m_globalThisValue(exec->m_globalThisValue) … … 52 52 , m_registerFile(registerFile) 53 53 , m_scopeChain(scopeChain) 54 , m_callFrame Offset(callFrameOffset)54 , m_callFrame(callFrame) 55 55 { 56 56 ASSERT(!exec->m_exception);
Note:
See TracChangeset
for help on using the changeset viewer.