| 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 45cab033529765b9bacb459af928c5af67ce850b..29d8b86b4808074db6f8cbf1d073bf645d91d0e2 100644
|
| --- a/compiler/java/com/google/dart/compiler/testing/TestCompilerContext.java
|
| +++ b/compiler/java/com/google/dart/compiler/testing/TestCompilerContext.java
|
| @@ -31,7 +31,7 @@ import java.util.Set;
|
| /**
|
| * Common context for test cases.
|
| */
|
| -public class TestCompilerContext extends DartCompilerListener implements DartCompilerContext {
|
| +public class TestCompilerContext implements DartCompilerListener, DartCompilerContext {
|
|
|
| private final Set<EventKind> ignoredEvents;
|
| final List<ErrorCode> errors;
|
| @@ -151,6 +151,10 @@ public class TestCompilerContext extends DartCompilerListener implements DartCom
|
| }
|
|
|
| @Override
|
| + public void unitAboutToCompile(DartSource source, boolean diet) {
|
| + }
|
| +
|
| + @Override
|
| public void unitCompiled(DartUnit unit) {
|
| }
|
| }
|
|
|