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

Unified Diff: client/tools/dartserver/java/com/google/appstack/tools/dartserver/DartApp.java

Issue 8295001: Missing unitCompiled() (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/tools/dartserver/java/com/google/appstack/tools/dartserver/DartApp.java
diff --git a/client/tools/dartserver/java/com/google/appstack/tools/dartserver/DartApp.java b/client/tools/dartserver/java/com/google/appstack/tools/dartserver/DartApp.java
index 4ebbddabd3fe3b007ef75e2df716671ac9d1da22..8b209eeefc4208c7eabe67d999d91982162dcecb 100644
--- a/client/tools/dartserver/java/com/google/appstack/tools/dartserver/DartApp.java
+++ b/client/tools/dartserver/java/com/google/appstack/tools/dartserver/DartApp.java
@@ -17,6 +17,7 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
+import com.google.dart.compiler.ast.DartUnit;
import com.google.dart.compiler.Backend;
import com.google.dart.compiler.CompilerConfiguration;
import com.google.dart.compiler.CommandLineOptions.CompilerOptions;
@@ -92,6 +93,9 @@ public class DartApp {
errors.add(error);
}
+ @Override
+ public void unitCompiled(DartUnit unit) {
+ }
}
private static String keyFor(Source source, String part, String extension) {
« 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