| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 import 'dart:collection' as collection; | 5 import 'dart:collection' as collection; |
| 6 | 6 |
| 7 typedef void VoidFunction(); | 7 typedef void VoidFunction(); |
| 8 | 8 |
| 9 class Fisk { | 9 class Fisk { |
| 10 it1(x) { | 10 it1(x) { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 for (collection in arguments) { | 37 for (collection in arguments) { |
| 38 print(collection); | 38 print(collection); |
| 39 } | 39 } |
| 40 for (VoidFunction in arguments) { | 40 for (VoidFunction in arguments) { |
| 41 print(VoidFunction); | 41 print(VoidFunction); |
| 42 } | 42 } |
| 43 for (1 in arguments) { | 43 for (1 in arguments) { |
| 44 print(key); | 44 print(key); |
| 45 } | 45 } |
| 46 } | 46 } |
| OLD | NEW |