From af75857523ef438aea74de5b4855041ea2976a02 Mon Sep 17 00:00:00 2001 From: develar Date: Thu, 18 Oct 2012 18:35:04 +0400 Subject: [PATCH] KT-2864 --- src/com/google/dart/compiler/util/TextOutputImpl.java | 3 +++ 1 file changed, 3 insertions(+) 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