Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(985)

Unified Diff: runtime/bin/dbg_connection.h

Issue 10537065: Debugger break on TypeError, AssertionError (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/dbg_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/dbg_connection.h
===================================================================
--- runtime/bin/dbg_connection.h (revision 8456)
+++ runtime/bin/dbg_connection.h (working copy)
@@ -41,13 +41,17 @@
static void QueueMsg(dart::TextBuffer* msg);
static void SendQueuedMsgs();
- static void SendBreakpointEvent(Dart_Breakpoint bpt, Dart_StackTrace trace);
+ static void SendBreakpointEvent(Dart_StackTrace trace);
+ static void SendExceptionEvent(Dart_Handle exception, Dart_StackTrace trace);
static void BptResolvedHandler(intptr_t bp_id,
Dart_Handle url,
intptr_t line_number);
static void BreakpointHandler(Dart_Breakpoint bpt, Dart_StackTrace trace);
+ static void ExceptionThrownHandler(Dart_Handle exception,
+ Dart_StackTrace stack_trace);
static void AcceptDbgConnection(int debug_fd);
+ static void WaitForConnection();
static void CloseDbgConnection();
static void HandleMessages();
« no previous file with comments | « no previous file | runtime/bin/dbg_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698