Changeset 127202 in webkit for trunk/Source/JavaScriptCore/runtime/Completion.cpp
- Timestamp:
- Aug 30, 2012, 3:50:00 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Completion.cpp
r121381 r127202 52 52 } 53 53 54 JSValue evaluate(ExecState* exec, ScopeChainNode* scopeChain,const SourceCode& source, JSValue thisValue, JSValue* returnedException)54 JSValue evaluate(ExecState* exec, const SourceCode& source, JSValue thisValue, JSValue* returnedException) 55 55 { 56 56 JSLockHolder lock(exec); … … 73 73 thisValue = exec->dynamicGlobalObject(); 74 74 JSObject* thisObj = thisValue.toThisObject(exec); 75 JSValue result = exec->interpreter()->execute(program, exec, scopeChain,thisObj);75 JSValue result = exec->interpreter()->execute(program, exec, thisObj); 76 76 77 77 if (exec->hadException()) {
Note:
See TracChangeset
for help on using the changeset viewer.