| Index: sdk/lib/_internal/compiler/implementation/source_file_provider.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/source_file_provider.dart b/sdk/lib/_internal/compiler/implementation/source_file_provider.dart
|
| index ebd6846fb2f7650b04699274bf2abf67d82494dd..a511fff5b3137102001bf849d93137a9de10c4de 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/source_file_provider.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/source_file_provider.dart
|
| @@ -200,7 +200,8 @@ class FormattingDiagnosticHandler {
|
| } else {
|
| SourceFile file = provider.sourceFiles[uri.toString()];
|
| if (file != null) {
|
| - print(file.getLocationMessage(color(message), begin, end, true, color));
|
| + print(file.getLocationMessage(
|
| + color(message), begin, end, colorize: color));
|
| } else {
|
| print('${provider.relativizeUri(uri)}@$begin+${end - begin}:'
|
| ' [$kind] ${color(message)}');
|
|
|