| Index: src/debug/debug.cc
|
| diff --git a/src/debug/debug.cc b/src/debug/debug.cc
|
| index adf3659c68fdf560f267037772bf9baa38efd747..a7e5ea6cef4d4330328d5872028c0c0b4e240694 100644
|
| --- a/src/debug/debug.cc
|
| +++ b/src/debug/debug.cc
|
| @@ -328,7 +328,7 @@ DebugBreakType BytecodeArrayBreakIterator::GetDebugBreakType() {
|
| return isolate()->is_tail_call_elimination_enabled()
|
| ? DEBUG_BREAK_SLOT_AT_TAIL_CALL
|
| : DEBUG_BREAK_SLOT_AT_CALL;
|
| - } else if (interpreter::Bytecodes::IsCallOrNew(bytecode)) {
|
| + } else if (interpreter::Bytecodes::IsCallOrConstruct(bytecode)) {
|
| return DEBUG_BREAK_SLOT_AT_CALL;
|
| } else if (source_position_iterator_.is_statement()) {
|
| return DEBUG_BREAK_SLOT;
|
|
|