| Index: sdk/lib/_internal/compiler/implementation/tree/unparser.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/tree/unparser.dart b/sdk/lib/_internal/compiler/implementation/tree/unparser.dart
|
| index eee95d4e9a2b79e05a5937d39f173294a7452c7a..9c20f2d347124722a2063ae4e07c3ca4f462b61e 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/tree/unparser.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/tree/unparser.dart
|
| @@ -123,7 +123,7 @@ class Unparser implements Visitor {
|
| add(node.forToken.value);
|
| sb.add('(');
|
| visit(node.initializer);
|
| - if (node.initializer is !Statement) sb.add(';');
|
| + sb.add(';');
|
| visit(node.conditionStatement);
|
| visit(node.update);
|
| sb.add(')');
|
| @@ -366,9 +366,6 @@ class Unparser implements Visitor {
|
| sb.add(' ');
|
| }
|
| visit(node.definitions);
|
| - if (node.endToken.value == const SourceString(';')) {
|
| - add(node.endToken.value);
|
| - }
|
| }
|
|
|
| visitDoWhile(DoWhile node) {
|
|
|