| Index: src/inspector/v8-debugger.cc
|
| diff --git a/src/inspector/v8-debugger.cc b/src/inspector/v8-debugger.cc
|
| index 86a48401a65107d85e9e11dee827088eb15ba987..c84154ba779aa9c6902020e76b205f5e3368d588 100644
|
| --- a/src/inspector/v8-debugger.cc
|
| +++ b/src/inspector/v8-debugger.cc
|
| @@ -452,6 +452,11 @@ bool V8Debugger::shouldContinueToCurrentLocation() {
|
| protocol::Debugger::ContinueToLocation::TargetCallFramesEnum::Current) {
|
| return m_continueToLocationStack->isEqualIgnoringTopFrame(
|
| currentStack.get());
|
| + } else {
|
| + DCHECK(
|
| + m_continueToLocationStrategy ==
|
| + protocol::Debugger::ContinueToLocation::TargetCallFramesEnum::Deeper);
|
| + return m_continueToLocationStack->isPrefix(currentStack.get());
|
| }
|
| return true;
|
| }
|
|
|