Changeset 127202 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
- Timestamp:
- Aug 30, 2012, 3:50:00 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
r127191 r127202 519 519 520 520 EvalExecutable* eval = EvalExecutable::create(exec, makeSource(s), false); 521 JSObject* error = eval->compile(exec, jsCast<JSGlobalObject*>(unwrappedObject) ->globalScopeChain());521 JSObject* error = eval->compile(exec, jsCast<JSGlobalObject*>(unwrappedObject)); 522 522 if (error) 523 523 return throwVMError(exec, error); 524 524 525 return JSValue::encode(exec->interpreter()->execute(eval, exec, thisObject, jsCast<JSGlobalObject*>(unwrappedObject) ->globalScopeChain()));525 return JSValue::encode(exec->interpreter()->execute(eval, exec, thisObject, jsCast<JSGlobalObject*>(unwrappedObject))); 526 526 } 527 527
Note:
See TracChangeset
for help on using the changeset viewer.