| OLD | NEW |
| 1 #import('dart:html'); | 1 #import('dart:html'); |
| 2 #import('dart:json'); | 2 #import('dart:json'); |
| 3 #import('dart:math', prefix: 'Math'); |
| 3 #import('Suites.dart'); | 4 #import('Suites.dart'); |
| 4 | 5 |
| 5 main() { | 6 main() { |
| 6 new Dromaeo().run(); | 7 new Dromaeo().run(); |
| 7 } | 8 } |
| 8 | 9 |
| 9 class SuiteController { | 10 class SuiteController { |
| 10 final SuiteDescription _suiteDescription; | 11 final SuiteDescription _suiteDescription; |
| 11 final IFrameElement _suiteIframe; | 12 final IFrameElement _suiteIframe; |
| 12 | 13 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 } | 213 } |
| 213 | 214 |
| 214 Element _byId(String id) { | 215 Element _byId(String id) { |
| 215 return document.query('#$id'); | 216 return document.query('#$id'); |
| 216 } | 217 } |
| 217 | 218 |
| 218 int get _suitesTotal { | 219 int get _suitesTotal { |
| 219 return _suiteControllers.length; | 220 return _suiteControllers.length; |
| 220 } | 221 } |
| 221 } | 222 } |
| OLD | NEW |