Changeset 162720 in webkit for trunk/Source/JavaScriptCore/debugger/Debugger.cpp
- Timestamp:
- Jan 24, 2014, 1:27:42 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/debugger/Debugger.cpp
r162711 r162720 323 323 // If JavaScript is running, it's not safe to recompile, since we'll end 324 324 // up throwing away code that is live on the stack. 325 ASSERT(!vm->entryScope); 326 if (vm->entryScope) 327 return; 328 325 if (vm->entryScope) { 326 vm->entryScope->setRecompilationNeeded(true); 327 return; 328 } 329 329 330 vm->prepareToDiscardCode(); 330 331
Note:
See TracChangeset
for help on using the changeset viewer.