| Index: compiler/javatests/com/google/dart/compiler/DartCompilerListenerTest.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/DartCompilerListenerTest.java b/compiler/javatests/com/google/dart/compiler/DartCompilerListenerTest.java
|
| index 3864db2bfb470a49f88f316d7c776f95d66f2834..8f75e1dcf3e9ec5b5bf459b4c7416b6a3559cad2 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/DartCompilerListenerTest.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/DartCompilerListenerTest.java
|
| @@ -4,6 +4,8 @@
|
|
|
| package com.google.dart.compiler;
|
|
|
| +import com.google.dart.compiler.ast.DartUnit;
|
| +
|
| /**
|
| * Testing implementation of {@link DartCompilerListener}.
|
| */
|
| @@ -90,4 +92,8 @@ public class DartCompilerListenerTest extends DartCompilerListener {
|
| CompilerTestCase.assertEquals("Not all expected errors were reported",
|
| total, current);
|
| }
|
| +
|
| + @Override
|
| + public void unitCompiled(DartUnit unit) {
|
| + }
|
| }
|
|
|