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

Unified Diff: client/fling/src/java/core/com/google/dart/CompileService.java

Issue 8275036: Fling: implement the new DartCompilerListener.unitCompiled() method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/fling/src/java/core/com/google/dart/CompileService.java
diff --git a/client/fling/src/java/core/com/google/dart/CompileService.java b/client/fling/src/java/core/com/google/dart/CompileService.java
index fe622a32b608730d6c3cf2c780b5d96b02865ca5..6aff85b0e4eecebaa078ea2767642314244c5714 100644
--- a/client/fling/src/java/core/com/google/dart/CompileService.java
+++ b/client/fling/src/java/core/com/google/dart/CompileService.java
@@ -26,6 +26,7 @@ import com.google.dart.compiler.DefaultCompilerConfiguration;
import com.google.dart.compiler.LibrarySource;
import com.google.dart.compiler.Source;
import com.google.dart.compiler.UrlLibrarySource;
+import com.google.dart.compiler.ast.DartUnit;
import com.google.dart.compiler.backend.js.JavascriptBackend;
/**
@@ -143,6 +144,10 @@ public class CompileService {
public void typeError(DartCompilationError error) {
typeErrors.add(CompileError.from(error));
}
+
+ @Override
+ public void unitCompiled(DartUnit unit) {
+ }
}
/**
@@ -192,6 +197,10 @@ public class CompileService {
public void typeError(DartCompilationError error) {
throw new RuntimeException("Unable to build runtime lib: " + error);
}
+
+ @Override
+ public void unitCompiled(DartUnit unit) {
+ }
});
return snapshot;
} catch (IOException e) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698