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

Unified Diff: runtime/vm/debugger.h

Issue 113513004: Handle vmservice messages while at breakpoint. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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
Index: runtime/vm/debugger.h
===================================================================
--- runtime/vm/debugger.h (revision 31070)
+++ runtime/vm/debugger.h (working copy)
@@ -36,12 +36,16 @@
RawString* SourceUrl();
intptr_t LineNumber();
- void GetCodeLocation(Library* lib, Script* script, intptr_t* token_pos);
+ void GetCodeLocation(Library* lib,
+ Script* script,
+ intptr_t* token_pos) const;
void Enable();
void Disable();
bool IsEnabled() const { return is_enabled_; }
+ void PrintToJSONStream(JSONStream* stream) const;
hausner 2013/12/17 21:04:33 Should you import the header that defines JSONStre
turnidge 2013/12/17 21:50:01 Header is now included in the .cc file. I have pu
+
private:
void VisitObjectPointers(ObjectPointerVisitor* visitor);
@@ -353,6 +357,8 @@
uword GetPatchedStubAddress(uword breakpoint_address);
+ void PrintBreakpointsToJSONArray(JSONArray* jsarr) const;
hausner 2013/12/17 21:04:33 ditto
turnidge 2013/12/17 21:50:01 Done.
+
static bool IsDebuggable(const Function& func);
private:

Powered by Google App Engine
This is Rietveld 408576698