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

Unified Diff: pkg/analyzer/test/utils.dart

Issue 975453004: Reformat (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/test/test_all.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/utils.dart
diff --git a/pkg/analyzer/test/utils.dart b/pkg/analyzer/test/utils.dart
index df0628353b4214f2e1a060fc314f1937ddec784a..2a9ba8113d1b82d33141338af43b63d8162d339d 100644
--- a/pkg/analyzer/test/utils.dart
+++ b/pkg/analyzer/test/utils.dart
@@ -24,8 +24,7 @@ String errorsForFile(String contents) {
try {
parseDartFile(path);
} on AnalyzerErrorGroup catch (e) {
- return e.toString().replaceAllMapped(
- new RegExp(
+ return e.toString().replaceAllMapped(new RegExp(
r"^(Error on line \d+ of )((?:[A-Z]+:)?[^:]+): .*$",
multiLine: true),
(match) => match[1] + pathos.basename(match[2]) + ': ...');
« no previous file with comments | « pkg/analyzer/test/test_all.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698