Index: compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java |
diff --git a/compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java b/compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java |
index 0792c5be2eec348da084f4c968c3bf1542dc3b80..ab2a614ef3a790d9b84c1a4baf8049add74bdbbe 100644 |
--- a/compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java |
+++ b/compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java |
@@ -7,6 +7,7 @@ package com.google.dart.compiler.type; |
import com.google.dart.compiler.DartCompilationError; |
import com.google.dart.compiler.DartCompilerListener; |
import com.google.dart.compiler.ErrorCode; |
+import com.google.dart.compiler.ast.DartUnit; |
import com.google.dart.compiler.resolver.ClassElement; |
import com.google.dart.compiler.resolver.Elements; |
import com.google.dart.compiler.resolver.TypeVariableElement; |
@@ -151,6 +152,10 @@ abstract class TypeTestCase extends TestCase { |
public void typeError(DartCompilationError event) { |
compilationError(event); |
} |
+ |
+ @Override |
+ public void unitCompiled(DartUnit unit) { |
+ } |
}; |
final TestCompilerContext context = new TestCompilerContext() { |