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

Unified Diff: runtime/vm/debugger.h

Issue 9240014: Set breakpoint at url, line number (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/include/dart_debugger_api.h ('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 3419)
+++ runtime/vm/debugger.h (working copy)
@@ -126,6 +126,8 @@
// Set breakpoint at closest location to function entry.
Breakpoint* SetBreakpointAtEntry(const Function& target_function);
+ Breakpoint* SetBreakpointAtLine(const String& script_url,
+ intptr_t line_number);
void VisitObjectPointers(ObjectPointerVisitor* visitor);
@@ -139,6 +141,8 @@
static const char* QualifiedFunctionName(const Function& func);
private:
+ Breakpoint* SetBreakpoint(const Function& target_function,
+ intptr_t token_index);
void AddBreakpoint(Breakpoint* bpt);
bool initialized_;
« no previous file with comments | « runtime/include/dart_debugger_api.h ('k') | runtime/vm/debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698