Changeset 211642 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Feb 3, 2017, 12:00:53 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r211552 r211642 728 728 } 729 729 730 JSValue Interpreter::execute (ProgramExecutable* program, CallFrame* callFrame, JSObject* thisObj)730 JSValue Interpreter::executeProgram(const SourceCode& source, CallFrame* callFrame, JSObject* thisObj) 731 731 { 732 732 JSScope* scope = thisObj->globalObject()->globalScope(); 733 733 VM& vm = *scope->vm(); 734 734 auto throwScope = DECLARE_THROW_SCOPE(vm); 735 736 ProgramExecutable* program = ProgramExecutable::create(callFrame, source); 737 ASSERT(throwScope.exception() || program); 738 RETURN_IF_EXCEPTION(throwScope, { }); 735 739 736 740 ASSERT(!throwScope.exception());
Note:
See TracChangeset
for help on using the changeset viewer.