Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: compiler/javatests/com/google/dart/compiler/common/LibrarySourceFileTest.java

Issue 8285004: Ground work for addition to new listener api (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added some comments Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: compiler/javatests/com/google/dart/compiler/common/LibrarySourceFileTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/common/LibrarySourceFileTest.java b/compiler/javatests/com/google/dart/compiler/common/LibrarySourceFileTest.java
index 5832c50e154897171cd2477eb57d7db2fafdb882..694a2de093a72dbbf77630d18aae5ab87d6e03c2 100644
--- a/compiler/javatests/com/google/dart/compiler/common/LibrarySourceFileTest.java
+++ b/compiler/javatests/com/google/dart/compiler/common/LibrarySourceFileTest.java
@@ -9,6 +9,7 @@ import com.google.dart.compiler.DartCompilationError;
import com.google.dart.compiler.DartCompilerListener;
import com.google.dart.compiler.LibrarySource;
import com.google.dart.compiler.UrlLibrarySource;
+import com.google.dart.compiler.ast.DartUnit;
import com.google.dart.compiler.ast.LibraryNode;
import com.google.dart.compiler.ast.LibraryUnit;
import com.google.dart.compiler.parser.DartParser;
@@ -108,6 +109,10 @@ public class LibrarySourceFileTest extends AbstractSourceFileTest {
public void typeError(DartCompilationError event) {
throw new RuntimeException(event.getMessage());
}
+
+ @Override
+ public void unitCompiled(DartUnit unit) {
+ }
};
try {

Powered by Google App Engine
This is Rietveld 408576698