| Index: lib/compiler/implementation/tools/mini_parser.dart
|
| diff --git a/lib/compiler/implementation/tools/mini_parser.dart b/lib/compiler/implementation/tools/mini_parser.dart
|
| index cc01492c1bc5efcd2da72f3fc6a0d413dfc59fc0..356e6f06f802316f6d72fa111a47434c36ac5ca5 100644
|
| --- a/lib/compiler/implementation/tools/mini_parser.dart
|
| +++ b/lib/compiler/implementation/tools/mini_parser.dart
|
| @@ -38,7 +38,7 @@ void toolMain(List<String> arguments) {
|
| void printStats() {
|
| int kb = (charCount / 1024).round().toInt();
|
| String stats =
|
| - '$classCount classes (${kb}Kb) in ${stopwatch.elapsedInMs()}ms';
|
| + '$classCount classes (${kb}Kb) in ${stopwatch.elapsedMilliseconds}ms';
|
| if (errorCount != 0) {
|
| stats = '$stats with $errorCount errors';
|
| }
|
|
|