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

Unified Diff: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/MockAnalysisServer.java

Issue 809213003: Add format API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add handler hook and missed classes Created 5 years, 11 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: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/MockAnalysisServer.java
diff --git a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/MockAnalysisServer.java b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/MockAnalysisServer.java
index e4e5dc023bd05ec84c13c635b6cbfaa049da1f8a..a56b35536074b81b34900ec486373b30a0ec37f0 100644
--- a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/MockAnalysisServer.java
+++ b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/MockAnalysisServer.java
@@ -82,6 +82,12 @@ public class MockAnalysisServer implements AnalysisServer {
}
@Override
+ public void edit_format(String file, int selectionOffset, int selectionLength,
+ FormatConsumer consumer) {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
public void edit_getAssists(String file, int offset, int length, GetAssistsConsumer consumer) {
throw new UnsupportedOperationException();
}

Powered by Google App Engine
This is Rietveld 408576698