Index: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/compiler/TestCompilerListener.java |
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/compiler/TestCompilerListener.java b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/compiler/TestCompilerListener.java |
index f6ecce08965915af8db7fa0fd0f309c25283fc6c..73fe8e17cbf24b38a12b9fe27b8f8d3f7d0a7703 100644 |
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/compiler/TestCompilerListener.java |
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/compiler/TestCompilerListener.java |
@@ -15,6 +15,8 @@ package com.google.dart.tools.core.internal.compiler; |
import com.google.dart.compiler.DartCompilationError; |
import com.google.dart.compiler.DartCompilerListener; |
+import com.google.dart.compiler.Source; |
+import com.google.dart.compiler.ast.DartUnit; |
import static org.junit.Assert.assertEquals; |
import static org.junit.Assert.assertTrue; |
@@ -74,4 +76,8 @@ public class TestCompilerListener extends DartCompilerListener { |
public void typeError(DartCompilationError event) { |
compilationError(event); |
} |
+ |
+ @Override |
+ public void unitCompiled(DartUnit unit) { |
+ } |
} |