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

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: rebase 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);
« no previous file with comments | « pkg/compiler/lib/src/string_validator.dart ('k') | pkg/compiler/lib/src/tree_ir/optimization/variable_merger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698