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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/analysis/AnalysisDebug.java

Issue 11364134: Merge libv1. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error Created 8 years, 1 month 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: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/analysis/AnalysisDebug.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/analysis/AnalysisDebug.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/analysis/AnalysisDebug.java
index 67b9ee88ba854a6bd4281112028a029171a7a3fd..131695c17c3df0e0068dfb6131bcd9f3d6fd6603 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/analysis/AnalysisDebug.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/analysis/AnalysisDebug.java
@@ -20,7 +20,7 @@ import java.io.File;
/**
* Appends information about analysis to the console
*/
-public class AnalysisDebug implements AnalysisListener, IdleListener {
+public class AnalysisDebug implements AnalysisListener, TaskListener {
private final PrintStringWriter message = new PrintStringWriter();
private final String prefix;
@@ -92,6 +92,11 @@ public class AnalysisDebug implements AnalysisListener, IdleListener {
}
@Override
+ public void processing(int toBeProcessed) {
+ // ignored
+ }
+
+ @Override
public void resolved(AnalysisEvent event) {
synchronized (message) {
message.print(prefix);

Powered by Google App Engine
This is Rietveld 408576698