| Index: compiler/java/com/google/dart/compiler/testing/TestCompilerContext.java
|
| diff --git a/compiler/java/com/google/dart/compiler/testing/TestCompilerContext.java b/compiler/java/com/google/dart/compiler/testing/TestCompilerContext.java
|
| index 56f3bf2663dd60b7ef6b1047b7204e84b0e5ed84..c8732aed1fc8b966364d8b79e9a1f0749ff106b5 100644
|
| --- a/compiler/java/com/google/dart/compiler/testing/TestCompilerContext.java
|
| +++ b/compiler/java/com/google/dart/compiler/testing/TestCompilerContext.java
|
| @@ -12,6 +12,7 @@ import com.google.dart.compiler.DartSource;
|
| import com.google.dart.compiler.ErrorCode;
|
| import com.google.dart.compiler.LibrarySource;
|
| import com.google.dart.compiler.Source;
|
| +import com.google.dart.compiler.ast.DartUnit;
|
| import com.google.dart.compiler.ast.LibraryUnit;
|
| import com.google.dart.compiler.metrics.CompilerMetrics;
|
|
|
| @@ -151,4 +152,8 @@ public class TestCompilerContext extends DartCompilerListener implements DartCom
|
| public LibrarySource getSystemLibraryFor(String importSpec) {
|
| return null;
|
| }
|
| +
|
| + @Override
|
| + public void unitCompiled(DartUnit unit) {
|
| + }
|
| }
|
|
|