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

Unified Diff: tests/debugger/print_local_structure_test.dart

Issue 2065933004: Support for accessing arrays in the debugger (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 years, 6 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: tests/debugger/print_local_structure_test.dart
diff --git a/tests/debugger/print_local_structure_test.dart b/tests/debugger/print_local_structure_test.dart
index 88b7f04688cc44ca07704f2e8b27cef76c0ed307..55aa93fad1f78753c3d5e831da256b76add46d7f 100644
--- a/tests/debugger/print_local_structure_test.dart
+++ b/tests/debugger/print_local_structure_test.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE.md file.
-// DartinoDebuggerCommands=b breakHere,r,f 1,p *a,p *i,p notExisting,p a.shadowMe,p a.notExisting,p a.s,p *a.s, p a.s.shadowMe,p a.s.shadowMe.a,c
+// DartinoDebuggerCommands=b breakHere,r,f 1,p *a,p *i,p notExisting,p a.shadowMe,p a.notExisting,p a.s,p *a.s, p a.s.shadowMe,p a.s.shadowMe.a,p *list._list,p *list._list.1,p *list._list.k,p *list._list.-1,p *list._list.4,c
class S0 {
var str = 'spaß';
@@ -34,5 +34,7 @@ breakHere() { }
main() {
var a = new A();
var i = 42;
+ var list = new List(3);
+ list[1] = a;
breakHere();
}

Powered by Google App Engine
This is Rietveld 408576698