diff --git a/src/com/google/dart/compiler/util/TextOutputImpl.java b/src/com/google/dart/compiler/util/TextOutputImpl.java index beab9ea72f5..f1a85ee4240 100644 --- a/src/com/google/dart/compiler/util/TextOutputImpl.java +++ b/src/com/google/dart/compiler/util/TextOutputImpl.java @@ -78,6 +78,9 @@ public class TextOutputImpl implements TextOutput { line++; column = 0; justNewlined = true; + if (outListener != null) { + outListener.newLined(); + } } @Override