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

Unified Diff: runtime/vm/debugger.h

Issue 9316071: Dart_PropagateError, take 2. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 11 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 | « runtime/vm/dart_entry_test.cc ('k') | runtime/vm/debugger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/debugger.h
===================================================================
--- runtime/vm/debugger.h (revision 3862)
+++ runtime/vm/debugger.h (working copy)
@@ -132,9 +132,11 @@
const String& function_name);
// Set breakpoint at closest location to function entry.
- Breakpoint* SetBreakpointAtEntry(const Function& target_function);
+ Breakpoint* SetBreakpointAtEntry(const Function& target_function,
+ Error* error);
Breakpoint* SetBreakpointAtLine(const String& script_url,
- intptr_t line_number);
+ intptr_t line_number,
+ Error* error);
void RemoveBreakpoint(Breakpoint* bpt);
@@ -160,7 +162,8 @@
private:
Breakpoint* SetBreakpoint(const Function& target_function,
- intptr_t token_index);
+ intptr_t token_index,
+ Error* error);
void UnsetBreakpoint(Breakpoint* bpt);
Breakpoint* NewBreakpoint(const Function& func, intptr_t pc_desc_index);
void RegisterBreakpoint(Breakpoint* bpt);
« no previous file with comments | « runtime/vm/dart_entry_test.cc ('k') | runtime/vm/debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698