Changeset 259131 in webkit for trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
- Timestamp:
- Mar 27, 2020, 11:39:46 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
r254653 r259131 254 254 JSScope::collectClosureVariablesUnderTDZ(scope()->jsScope(), variablesUnderTDZ); 255 255 256 auto* eval = DirectEvalExecutable::create(globalObject, makeSource(script, callFrame->callerSourceOrigin(vm)), codeBlock->isStrictMode(), codeBlock->unlinkedCodeBlock()->derivedContextType(), codeBlock->unlinkedCodeBlock()->needsClassFieldInitializer(), codeBlock->unlinkedCodeBlock()->isArrowFunction(), evalContextType, &variablesUnderTDZ);256 auto* eval = DirectEvalExecutable::create(globalObject, makeSource(script, callFrame->callerSourceOrigin(vm)), codeBlock->isStrictMode(), codeBlock->unlinkedCodeBlock()->derivedContextType(), codeBlock->unlinkedCodeBlock()->needsClassFieldInitializer(), codeBlock->unlinkedCodeBlock()->isArrowFunction(), codeBlock->ownerExecutable()->isInsideOrdinaryFunction(), evalContextType, &variablesUnderTDZ); 257 257 if (UNLIKELY(catchScope.exception())) { 258 258 exception = catchScope.exception();
Note:
See TracChangeset
for help on using the changeset viewer.