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

Unified Diff: pkg/compiler/lib/src/tree/unparser.dart

Issue 1155633002: Fix 56 hints in pkg/compiler (Closed) Base URL: https://github.com/dart-lang/sdk.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
Index: pkg/compiler/lib/src/tree/unparser.dart
diff --git a/pkg/compiler/lib/src/tree/unparser.dart b/pkg/compiler/lib/src/tree/unparser.dart
index 5325f1377dff6fb58b8bffa528a3487fa034cdca..21051596b016f60fbe6b3096cfb19e9f0c5b851e 100644
--- a/pkg/compiler/lib/src/tree/unparser.dart
+++ b/pkg/compiler/lib/src/tree/unparser.dart
@@ -68,8 +68,6 @@ class Unparser extends Indentation implements Visitor {
indentMore();
newline();
visit(nodes.head);
- String delimiter =
- (statements.delimiter == null) ? "" : "${statements.delimiter}";
for (Link link = nodes.tail; !link.isEmpty; link = link.tail) {
newline();
visit(link.head);

Powered by Google App Engine
This is Rietveld 408576698