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(); |
} |