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

Unified Diff: pkg/analyzer_cli/lib/src/ansi.dart

Issue 2933753002: Run the sorter to reduce code churn (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « pkg/analyzer_cli/lib/src/analyzer_impl.dart ('k') | pkg/analyzer_cli/lib/src/error_formatter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer_cli/lib/src/ansi.dart
diff --git a/pkg/analyzer_cli/lib/src/ansi.dart b/pkg/analyzer_cli/lib/src/ansi.dart
index f068cd50e2195af7331568646c9b169589b5a100..c764fd8a68c3746786f68b8c03c10c49c7f0eb30 100644
--- a/pkg/analyzer_cli/lib/src/ansi.dart
+++ b/pkg/analyzer_cli/lib/src/ansi.dart
@@ -16,20 +16,20 @@ bool terminalSupportsAnsi() {
class AnsiLogger {
final bool useAnsi;
+ AnsiLogger(this.useAnsi);
+ String get blue => _code('\u001b[34m');
+ String get bold => _code('\u001b[1m');
+ String get bullet => (runningTests || !Platform.isWindows) ? '•' : '-';
String get cyan => _code('\u001b[36m');
+ String get gray => _code('\u001b[1;30m');
String get green => _code('\u001b[32m');
String get magenta => _code('\u001b[35m');
- String get red => _code('\u001b[31m');
- String get yellow => _code('\u001b[33m');
- String get blue => _code('\u001b[34m');
- String get gray => _code('\u001b[1;30m');
- String get none => _code('\u001b[0m');
String get noColor => _code('\u001b[39m');
- String get bold => _code('\u001b[1m');
+ String get none => _code('\u001b[0m');
- AnsiLogger(this.useAnsi);
+ String get red => _code('\u001b[31m');
- String get bullet => (runningTests || !Platform.isWindows) ? '•' : '-';
+ String get yellow => _code('\u001b[33m');
String _code(String ansiCode) => useAnsi ? ansiCode : '';
}
« no previous file with comments | « pkg/analyzer_cli/lib/src/analyzer_impl.dart ('k') | pkg/analyzer_cli/lib/src/error_formatter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698