Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index 3a9ce3f43063b974d227833d2b0254170c9f4b01..ebcb4498a9d50b997bcf390e435b964cca69b854 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -1824,6 +1824,13 @@ void Interpreter::DoReturn(compiler::InterpreterAssembler* assembler) { |
__ Return(); |
} |
+// Debugger |
+// |
+// Call runtime to handle debugger statement. |
+void Interpreter::DoDebugger(compiler::InterpreterAssembler* assembler) { |
+ __ CallRuntime(Runtime::kHandleDebuggerStatement); |
+ __ Dispatch(); |
+} |
// ForInPrepare <cache_info_triple> |
// |