Changeset 284159 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
- Timestamp:
- Oct 14, 2021, 7:24:50 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
r284151 r284159 493 493 494 494 SourceOrigin sourceOrigin = callFrame->callerSourceOrigin(vm); 495 EvalExecutable* eval = IndirectEvalExecutable:: tryCreate(globalObject, makeSource(s, sourceOrigin), DerivedContextType::None, false, EvalContextType::None);495 EvalExecutable* eval = IndirectEvalExecutable::create(globalObject, makeSource(s, sourceOrigin), DerivedContextType::None, false, EvalContextType::None); 496 496 EXCEPTION_ASSERT(!!scope.exception() == !eval); 497 497 if (!eval)
Note:
See TracChangeset
for help on using the changeset viewer.