From c36d48a4fcf59b015b046cd006ee7869cb417f02 Mon Sep 17 00:00:00 2001 From: Sami Vaarala Date: Tue, 27 Oct 2015 22:37:18 +0200 Subject: [PATCH] Releases: debugger reattach --- RELEASES.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/RELEASES.rst b/RELEASES.rst index 11c1a156..1450eafd 100644 --- a/RELEASES.rst +++ b/RELEASES.rst @@ -1145,13 +1145,16 @@ Planned intended mainly for minimal compatibility with existing code using "const" (GH-360) -* Add a debugger Throw notify for errors about to be thrown, and an option - to automatically pause before an uncaught error is thrown (GH-286, GH-347) - * Add a human readable summary of object/key for rejected property operations to make error messages more useful for operations like "null.foo = 123;" (GH-210, GH-405) +* Add a debugger Throw notify for errors about to be thrown, and an option + to automatically pause before an uncaught error is thrown (GH-286, GH-347) + +* Allow debugger detached callback to call duk_debugger_attach(), previously + this clobbered some internal state (GH-399) + * Fix "debugger" statement line number off-by-one so that the debugger now correctly pauses on the debugger statement rather than after it (GH-347)