fix new strong mode error
diff --git a/lib/css.dart b/lib/css.dart
index 590e835..65d386d 100644
--- a/lib/css.dart
+++ b/lib/css.dart
@@ -39,7 +39,7 @@
     var file = new SourceFile(contents, url: path.toUri(inputPath));
 
     // Parse the CSS.
-    var tree = _time(
+    StyleSheet tree = _time(
         'Parse $filename', () => new Parser(file, contents).parse(), verbose);
 
     _time('Analyzer $filename', () => new Analyzer([tree], messages), verbose)