Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(565)

Unified Diff: sdk/lib/_internal/compiler/implementation/source_file_provider.dart

Issue 609783002: Support static field access in analyzer2dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)}');
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/source_file.dart ('k') | tests/compiler/dart2js/mock_compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698