| Index: dart/sdk/lib/_internal/compiler/implementation/js/printer.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/js/printer.dart b/dart/sdk/lib/_internal/compiler/implementation/js/printer.dart
|
| index f7d65c1c486f2a52e00d48ee9e54b03d88a60b6e..a5870d8f95f5dbcf4fafdd8f35b83a185dd31507 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/js/printer.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/js/printer.dart
|
| @@ -140,6 +140,10 @@ class Printer implements NodeVisitor {
|
| visitAll(program.body);
|
| }
|
|
|
| + visitBlob(Blob node) {
|
| + outBuffer.addBuffer(node.buffer);
|
| + }
|
| +
|
| bool blockBody(Node body, {bool needsSeparation, bool needsNewline}) {
|
| if (body is Block) {
|
| spaceOut();
|
|
|