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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dartino 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 // DartinoDebuggerCommands=b breakHere,r,f 1,p *a,p *i,p notExisting,p a.shadowM e,p a.notExisting,p a.s,p *a.s, p a.s.shadowMe,p a.s.shadowMe.a,c 5 // DartinoDebuggerCommands=b breakHere,r,f 1,p *a,p *i,p notExisting,p a.shadowM e,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
6 6
7 class S0 { 7 class S0 {
8 var str = 'spaß'; 8 var str = 'spaß';
9 } 9 }
10 10
11 class S1 extends S0 { 11 class S1 extends S0 {
12 var i = 42; 12 var i = 42;
13 var i2 = 1 << 33; 13 var i2 = 1 << 33;
14 } 14 }
15 15
(...skipping 11 matching lines...) Expand all
27 var t = true; 27 var t = true;
28 var f = false; 28 var f = false;
29 var s = new S3(); 29 var s = new S3();
30 } 30 }
31 31
32 breakHere() { } 32 breakHere() { }
33 33
34 main() { 34 main() {
35 var a = new A(); 35 var a = new A();
36 var i = 42; 36 var i = 42;
37 var list = new List(3);
38 list[1] = a;
37 breakHere(); 39 breakHere();
38 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698