| Index: compiler/java/com/google/dart/compiler/DartCompilerMainContext.java
|
| diff --git a/compiler/java/com/google/dart/compiler/DartCompilerMainContext.java b/compiler/java/com/google/dart/compiler/DartCompilerMainContext.java
|
| index eae9614c58e67e4652ed48b674e36bf0bf8cd39b..32d8c6e667b157f1050b0de5e2ab4d5857c8db2e 100644
|
| --- a/compiler/java/com/google/dart/compiler/DartCompilerMainContext.java
|
| +++ b/compiler/java/com/google/dart/compiler/DartCompilerMainContext.java
|
| @@ -4,6 +4,7 @@
|
|
|
| package com.google.dart.compiler;
|
|
|
| +import com.google.dart.compiler.ast.DartUnit;
|
| import com.google.dart.compiler.ast.LibraryUnit;
|
| import com.google.dart.compiler.metrics.CompilerMetrics;
|
| import com.google.dart.compiler.parser.DartParser;
|
| @@ -183,4 +184,9 @@ final class DartCompilerMainContext extends DartCompilerListener implements
|
| public LibrarySource getSystemLibraryFor(String importSpec) {
|
| return compilerConfiguration.getSystemLibraryFor(importSpec);
|
| }
|
| +
|
| + @Override
|
| + public void unitCompiled(DartUnit unit) {
|
| + listener.unitCompiled(unit);
|
| + }
|
| }
|
|
|