| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 foo(state) { |
| 6 if (state == null) return 0; |
| 7 var sum = 0; |
| 8 state = inscrutableId(state); |
| 9 for (int i = 0; i < state.length; i++) { |
| 10 sum += state[i]; |
| 11 } |
| 12 state = inscrutableId(state); |
| 13 for (int i = 0; i < state.length; i++) { |
| 14 sum += state[i]; |
| 15 } |
| 16 return sum; |
| 17 } |
| 18 |
| 19 int inscrutable(int x) => x == 0 ? 0 : x | inscrutable(x & (x - 1)); |
| 20 |
| 21 inscrutableId(x) { |
| 22 if (x == 0) return inscrutable(x); |
| 23 return (3 == inscrutable(3)) ? x : false; |
| 24 } |
| 25 |
| 26 class A { |
| 27 int length = 3; |
| 28 operator [](i) => 1; |
| 29 } |
| 30 |
| 31 main() { |
| 32 Expect.equals(12, foo([1, 2, 3])); |
| 33 if (inscrutableId(0) == 0) { |
| 34 Expect.equals(6, foo(new A())); |
| 35 } |
| 36 } |
| OLD | NEW |