Chromium Code Reviews| Index: lib/src/codegen/code_generator.dart |
| diff --git a/lib/src/codegen/code_generator.dart b/lib/src/codegen/code_generator.dart |
| index 888a2d4095ce7b97635bf4acdbedc26f7d7087be..ffb6041636bbc8bbc8252c11fcf71b1ea3ad6da6 100644 |
| --- a/lib/src/codegen/code_generator.dart |
| +++ b/lib/src/codegen/code_generator.dart |
| @@ -51,7 +51,7 @@ abstract class CodeGenerator { |
| // below. |
| list.sort((s1, s2) => s2.length - s1.length); |
| return list; |
| - }(); |
| + }() as List<String>; |
|
Leaf
2015/07/22 22:29:15
This shouldn't be necessary, but currently is. I
|
| static String _dirToPrefix(String dir) { |
| dir = path.absolute(dir); |