| OLD | NEW |
| 1 #library('Suites.dart'); | 1 library Suites; |
| 2 | 2 |
| 3 class Origin { | 3 class Origin { |
| 4 final String author; | 4 final String author; |
| 5 final String url; | 5 final String url; |
| 6 | 6 |
| 7 const Origin(this.author, this.url); | 7 const Origin(this.author, this.url); |
| 8 } | 8 } |
| 9 | 9 |
| 10 class SuiteDescription { | 10 class SuiteDescription { |
| 11 final String file; | 11 final String file; |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 return CATEGORIES[tags]; | 158 return CATEGORIES[tags]; |
| 159 } | 159 } |
| 160 for (final suite in _CORE_SUITE_DESCRIPTIONS) { | 160 for (final suite in _CORE_SUITE_DESCRIPTIONS) { |
| 161 if (suite.tags[0] == tags) { | 161 if (suite.tags[0] == tags) { |
| 162 return suite.name; | 162 return suite.name; |
| 163 } | 163 } |
| 164 } | 164 } |
| 165 return null; | 165 return null; |
| 166 } | 166 } |
| 167 } | 167 } |
| OLD | NEW |