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

Unified Diff: runtime/vm/debugger.h

Issue 2419013004: Add local variable declaration token position to service protocol (Closed)
Patch Set: test closure variables Created 4 years, 2 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
Index: runtime/vm/debugger.h
diff --git a/runtime/vm/debugger.h b/runtime/vm/debugger.h
index f3536c7e7731592c033547158cf53ef8366ed29f..4338275ba319d5ccfceb20ac196d32873b6cac42 100644
--- a/runtime/vm/debugger.h
+++ b/runtime/vm/debugger.h
@@ -285,8 +285,9 @@ class ActivationFrame : public ZoneAllocated {
void VariableAt(intptr_t i,
String* name,
- TokenPosition* token_pos,
- TokenPosition* end_pos,
+ TokenPosition* declaration_token_pos,
+ TokenPosition* visible_start_token_pos,
+ TokenPosition* visible_end_token_pos,
Object* value);
RawArray* GetLocalVariables();

Powered by Google App Engine
This is Rietveld 408576698