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

Unified Diff: runtime/vm/isolate.h

Issue 8687037: Very first steps for a debugger (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month 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/disassembler_ia32.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
===================================================================
--- runtime/vm/isolate.h (revision 1927)
+++ runtime/vm/isolate.h (working copy)
@@ -18,6 +18,7 @@
class ApiState;
class BigintStore;
class CodeIndexTable;
+class Debugger;
class HandleScope;
class Heap;
class LongJump;
@@ -242,6 +243,8 @@
intptr_t ast_node_id() const { return ast_node_id_; }
void set_ast_node_id(int value) { ast_node_id_ = value; }
+ Debugger* debugger() const { return debugger_; }
+
private:
Isolate();
@@ -278,6 +281,7 @@
ApiState* api_state_;
StubCode* stub_code_;
CodeIndexTable* code_index_table_;
+ Debugger* debugger_;
LongJump* long_jump_base_;
TimerList timer_list_;
uword stack_limit_;
« no previous file with comments | « runtime/vm/disassembler_ia32.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698