Index: compiler/java/com/google/dart/compiler/DefaultDartCompilerListener.java |
diff --git a/compiler/java/com/google/dart/compiler/DefaultDartCompilerListener.java b/compiler/java/com/google/dart/compiler/DefaultDartCompilerListener.java |
index ceffa199d9fd2a7aa4bf68f8fc24435e04cd6299..3b8abd594054665bcfc27dccdb5b6ca9b9a86c71 100644 |
--- a/compiler/java/com/google/dart/compiler/DefaultDartCompilerListener.java |
+++ b/compiler/java/com/google/dart/compiler/DefaultDartCompilerListener.java |
@@ -4,6 +4,8 @@ |
package com.google.dart.compiler; |
+import com.google.dart.compiler.ast.DartUnit; |
+ |
/** |
* A default implementation of {@link DartCompilerListener} which counts |
* compilation errors. |
@@ -100,4 +102,8 @@ public class DefaultDartCompilerListener extends DartCompilerListener { |
protected void incrementTypeErrorCount() { |
typeErrorCount++; |
} |
+ |
+ @Override |
+ public void unitCompiled(DartUnit unit) { |
+ } |
} |