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

Side by Side Diff: runtime/vm/debugger.h

Issue 10832150: Get rid of ast node ids. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/debugger.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_DEBUGGER_H_ 5 #ifndef VM_DEBUGGER_H_
6 #define VM_DEBUGGER_H_ 6 #define VM_DEBUGGER_H_
7 7
8 #include "include/dart_debugger_api.h" 8 #include "include/dart_debugger_api.h"
9 9
10 #include "vm/object.h" 10 #include "vm/object.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 uword pc() const { return pc_; } 123 uword pc() const { return pc_; }
124 uword fp() const { return fp_; } 124 uword fp() const { return fp_; }
125 uword sp() const { return sp_; } 125 uword sp() const { return sp_; }
126 126
127 const Function& DartFunction(); 127 const Function& DartFunction();
128 RawString* QualifiedFunctionName(); 128 RawString* QualifiedFunctionName();
129 RawString* SourceUrl(); 129 RawString* SourceUrl();
130 RawScript* SourceScript(); 130 RawScript* SourceScript();
131 RawLibrary* Library(); 131 RawLibrary* Library();
132 intptr_t TokenIndex(); 132 intptr_t TokenPos();
133 intptr_t LineNumber(); 133 intptr_t LineNumber();
134 134
135 // The context level of a frame is the context level at the 135 // The context level of a frame is the context level at the
136 // PC/token index of the frame. It determines the depth of the context 136 // PC/token index of the frame. It determines the depth of the context
137 // chain that belongs to the function of this activation frame. 137 // chain that belongs to the function of this activation frame.
138 intptr_t ContextLevel(); 138 intptr_t ContextLevel();
139 139
140 const char* ToCString(); 140 const char* ToCString();
141 141
142 intptr_t NumLocalVariables(); 142 intptr_t NumLocalVariables();
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 intptr_t exc_pause_info_; 355 intptr_t exc_pause_info_;
356 356
357 friend class SourceBreakpoint; 357 friend class SourceBreakpoint;
358 DISALLOW_COPY_AND_ASSIGN(Debugger); 358 DISALLOW_COPY_AND_ASSIGN(Debugger);
359 }; 359 };
360 360
361 361
362 } // namespace dart 362 } // namespace dart
363 363
364 #endif // VM_DEBUGGER_H_ 364 #endif // VM_DEBUGGER_H_
OLDNEW
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698