Index: frog/utils.dart |
diff --git a/frog/utils.dart b/frog/utils.dart |
index a308e4c715087e678209e54d4e2090372e26c033..f12d23dc7c14d0a1317409085d55e627dbcdb1a8 100644 |
--- a/frog/utils.dart |
+++ b/frog/utils.dart |
@@ -52,7 +52,7 @@ List zip(Iterable left, Iterable right, mapper(left, right)) { |
/** Sorts the map by the key. */ |
List orderValuesByKeys(Map map) { |
// TODO(jmesserly): it'd be nice to have SortedMap in corelib. |
- List keys = map.getKeys(); |
+ final keys = map.getKeys(); |
keys.sort((x, y) => x.compareTo(y)); |
final values = []; |
for (var k in keys) { |