diff --git a/AUTHORS b/AUTHORS index 7ac0815699..f18761e4ba 100644 --- a/AUTHORS +++ b/AUTHORS @@ -56,6 +56,7 @@ Patrick Gansterer Peter Varga Rafal Krypa Rajeev R Krithivasan +Refael Ackermann Rene Rebe Robert Mustacchi Rodolph Perfetta diff --git a/src/debug-debugger.js b/src/debug-debugger.js index a4c8801ea6..a1468a02b8 100644 --- a/src/debug-debugger.js +++ b/src/debug-debugger.js @@ -21,7 +21,8 @@ Debug.DebugEvent = { Break: 1, AfterCompile: 5, CompileError: 6, PromiseEvent: 7, - AsyncTaskEvent: 8 }; + AsyncTaskEvent: 8, + BreakForCommand: 9 }; // Types of exceptions that can be broken upon. Debug.ExceptionBreak = { Caught : 0, @@ -1172,10 +1173,13 @@ CompileEvent.prototype.toJSONProtocol = function() { switch (this.type_) { case Debug.DebugEvent.BeforeCompile: o.event = "beforeCompile"; + break; case Debug.DebugEvent.AfterCompile: o.event = "afterCompile"; + break; case Debug.DebugEvent.CompileError: o.event = "compileError"; + break; } o.body = {}; o.body.script = this.script_;