Changeset 31746 in webkit for trunk/JavaScriptCore/kjs/ExecState.cpp
- Timestamp:
- Apr 8, 2008, 7:17:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.cpp
r31267 r31746 43 43 44 44 // The constructor for the globalExec pseudo-ExecState 45 inline ExecState::ExecState(JSGlobalObject* globalObject )45 inline ExecState::ExecState(JSGlobalObject* globalObject, JSObject* thisObject) 46 46 : m_globalObject(globalObject) 47 47 , m_exception(0) … … 56 56 , m_inlineScopeChainNode(0, 0) 57 57 , m_variableObject(globalObject) 58 , m_thisValue(globalObject) 58 , m_thisValue(thisObject) 59 , m_globalThisValue(thisObject) 59 60 , m_iterationDepth(0) 60 61 , m_switchDepth(0) … … 78 79 , m_variableObject(globalObject) 79 80 , m_thisValue(thisObject) 81 , m_globalThisValue(thisObject) 80 82 , m_iterationDepth(0) 81 83 , m_switchDepth(0) … … 101 103 , m_variableObject(variableObject) 102 104 , m_thisValue(thisObject) 105 , m_globalThisValue(thisObject) 103 106 , m_iterationDepth(0) 104 107 , m_switchDepth(0) … … 116 119 } 117 120 118 GlobalExecState::GlobalExecState(JSGlobalObject* globalObject )119 : ExecState(globalObject )121 GlobalExecState::GlobalExecState(JSGlobalObject* globalObject, JSObject* thisObject) 122 : ExecState(globalObject, thisObject) 120 123 { 121 124 }
Note:
See TracChangeset
for help on using the changeset viewer.