| OLD | NEW |
| 1 library dromaeo_test; | 1 library dromaeo_test; |
| 2 | 2 |
| 3 import 'dart:html'; | 3 import 'dart:html'; |
| 4 import 'dart:async'; |
| 4 import 'dart:json' as json; | 5 import 'dart:json' as json; |
| 5 import 'dart:math' as Math; | 6 import 'dart:math' as Math; |
| 6 import 'Suites.dart'; | 7 import 'Suites.dart'; |
| 7 | 8 |
| 8 main() { | 9 main() { |
| 9 new Dromaeo().run(); | 10 new Dromaeo().run(); |
| 10 } | 11 } |
| 11 | 12 |
| 12 class SuiteController { | 13 class SuiteController { |
| 13 final SuiteDescription _suiteDescription; | 14 final SuiteDescription _suiteDescription; |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 } | 221 } |
| 221 | 222 |
| 222 Element _byId(String id) { | 223 Element _byId(String id) { |
| 223 return document.query('#$id'); | 224 return document.query('#$id'); |
| 224 } | 225 } |
| 225 | 226 |
| 226 int get _suitesTotal { | 227 int get _suitesTotal { |
| 227 return _suiteControllers.length; | 228 return _suiteControllers.length; |
| 228 } | 229 } |
| 229 } | 230 } |
| OLD | NEW |