OLD | NEW |
---|---|
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 Loading... | |
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 } |
OLD | NEW |