Changeset 28608 in webkit for trunk/JavaScriptCore/kjs/ExecState.cpp
- Timestamp:
- Dec 10, 2007, 9:47:41 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.cpp
r28527 r28608 34 34 // ECMA 10.2 35 35 ExecState::ExecState(JSGlobalObject* globalObject, JSObject* thisV, 36 FunctionBodyNode* currentBody, CodeType type, ExecState* callingExec, ExecState* currentExec,36 ScopeNode* scopeNode, CodeType type, ExecState* callingExec, ExecState* currentExec, 37 37 FunctionImp* func, const List* args) 38 38 : m_globalObject(globalObject) … … 41 41 , m_callingExec(callingExec) 42 42 , m_savedExec(currentExec) 43 , m_ currentBody(currentBody)43 , m_scopeNode(scopeNode) 44 44 , m_function(func) 45 45 , m_arguments(args) … … 78 78 } 79 79 80 if ( currentBody)80 if (scopeNode) 81 81 m_globalObject->setCurrentExec(this); 82 82 }
Note:
See TracChangeset
for help on using the changeset viewer.