| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart 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 file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
| 5 foo(state) { | 7 foo(state) { |
| 6 if (state == null) return 0; | 8 if (state == null) return 0; |
| 7 var sum = 0; | 9 var sum = 0; |
| 8 for (int i = 0; i < state.length; i++) { | 10 for (int i = 0; i < state.length; i++) { |
| 9 sum += state[i]; | 11 sum += state[i]; |
| 10 } | 12 } |
| 11 state = inscrutableId(state); | 13 state = inscrutableId(state); |
| 12 for (int i = 0; i < state.length; i++) { | 14 for (int i = 0; i < state.length; i++) { |
| 13 sum += state[i]; | 15 sum += state[i]; |
| 14 } | 16 } |
| (...skipping 11 matching lines...) Expand all Loading... |
| 26 int length = 3; | 28 int length = 3; |
| 27 operator [](i) => 1; | 29 operator [](i) => 1; |
| 28 } | 30 } |
| 29 | 31 |
| 30 main() { | 32 main() { |
| 31 Expect.equals(12, foo([1, 2, 3])); | 33 Expect.equals(12, foo([1, 2, 3])); |
| 32 if (inscrutableId(0) == 0) { | 34 if (inscrutableId(0) == 0) { |
| 33 Expect.equals(6, foo(new A())); | 35 Expect.equals(6, foo(new A())); |
| 34 } | 36 } |
| 35 } | 37 } |
| OLD | NEW |