| OLD | NEW |
| 1 | 1 |
| 2 library pets; | 2 library pets; |
| 3 | 3 |
| 4 import 'dart:collection' show DoubleLinkedQueue; |
| 4 import 'dart:isolate'; | 5 import 'dart:isolate'; |
| 5 import 'dart:math'; | 6 import 'dart:math'; |
| 6 | 7 |
| 7 final num MAX_CATS = 10; | 8 final num MAX_CATS = 10; |
| 8 | 9 |
| 9 final SPARKY = const Cat("Sparky"); | 10 final SPARKY = const Cat("Sparky"); |
| 10 | 11 |
| 11 final CHIPPY = const _Chipmunk("Chi\np\npy"); | 12 final CHIPPY = const _Chipmunk("Chi\np\npy"); |
| 12 | 13 |
| 13 abstract class Animal { | 14 abstract class Animal { |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 for (int i = 0; i < arr.length; i++) { | 216 for (int i = 0; i < arr.length; i++) { |
| 216 arr[i] = i * 10; | 217 arr[i] = i * 10; |
| 217 } | 218 } |
| 218 | 219 |
| 219 print("big array created"); | 220 print("big array created"); |
| 220 | 221 |
| 221 arr[0] = "assdsdf"; | 222 arr[0] = "assdsdf"; |
| 222 | 223 |
| 223 arr[0]++; | 224 arr[0]++; |
| 224 } | 225 } |
| OLD | NEW |