| 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 | |
| 7 foo(state) { | 5 foo(state) { |
| 8 if (state == null) return 0; | 6 if (state == null) return 0; |
| 9 var sum = 0; | 7 var sum = 0; |
| 10 state = inscrutableId(state); | 8 state = inscrutableId(state); |
| 11 for (int i = 0; i < state.length; i++) { | 9 for (int i = 0; i < state.length; i++) { |
| 12 sum += state[i]; | 10 sum += state[i]; |
| 13 } | 11 } |
| 14 state = inscrutableId(state); | 12 state = inscrutableId(state); |
| 15 for (int i = 0; i < state.length; i++) { | 13 for (int i = 0; i < state.length; i++) { |
| 16 sum += state[i]; | 14 sum += state[i]; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 29 int length = 3; | 27 int length = 3; |
| 30 operator [](i) => 1; | 28 operator [](i) => 1; |
| 31 } | 29 } |
| 32 | 30 |
| 33 main() { | 31 main() { |
| 34 Expect.equals(12, foo([1, 2, 3])); | 32 Expect.equals(12, foo([1, 2, 3])); |
| 35 if (inscrutableId(0) == 0) { | 33 if (inscrutableId(0) == 0) { |
| 36 Expect.equals(6, foo(new A())); | 34 Expect.equals(6, foo(new A())); |
| 37 } | 35 } |
| 38 } | 36 } |
| OLD | NEW |