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

Unified Diff: test/dependency_graph_test.dart

Issue 1138993010: Bump to the latest analyzer (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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 | « pubspec.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dependency_graph_test.dart
diff --git a/test/dependency_graph_test.dart b/test/dependency_graph_test.dart
index 86bc25b5d0710eab93f298c7e12947653fd6942c..6ccb6a647f464e079ed300fc548b9c4bf882c411 100644
--- a/test/dependency_graph_test.dart
+++ b/test/dependency_graph_test.dart
@@ -1137,9 +1137,7 @@ printReachable(SourceNode node) {
var sb = new StringBuffer();
helper(n, {indent: 0}) {
if (indent > 0) {
- sb
- ..write("| " * (indent - 1))
- ..write("|-- ");
+ sb..write("| " * (indent - 1))..write("|-- ");
}
sb.write(nameFor(n));
if (seen.contains(n)) {
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698