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

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

Issue 546073006: Update RemoteAnalysisServerImpl and tests to fix the build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 4e10f864c87b0692ea20e8f3f99bb58b75dc8f09..e08887ca0477eddc99acd0a4a91b9441b71d06da 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
@@ -75,44 +75,44 @@ public class MockAnalysisServer implements AnalysisServer {
}
@Override
- public void debug_createContext(String contextRoot, CreateContextConsumer consumer) {
+ public void edit_getAssists(String file, int offset, int length, GetAssistsConsumer consumer) {
throw new UnsupportedOperationException();
}
@Override
- public void debug_deleteContext(String id) {
+ public void edit_getAvailableRefactorings(String file, int offset, int length,
+ GetAvailableRefactoringsConsumer consumer) {
throw new UnsupportedOperationException();
}
@Override
- public void debug_mapUri(String id, String file, String uri, MapUriConsumer consumer) {
+ public void edit_getFixes(String file, int offset, GetFixesConsumer consumer) {
throw new UnsupportedOperationException();
}
@Override
- public void debug_setSubscriptions(List<String> subscriptions) {
+ public void edit_getRefactoring(String kindId, String file, int offset, int length,
+ boolean validateOnly, RefactoringOptions options, GetRefactoringConsumer consumer) {
throw new UnsupportedOperationException();
}
@Override
- public void edit_getAssists(String file, int offset, int length, GetAssistsConsumer consumer) {
+ public void execution_createContext(String contextRoot, CreateContextConsumer consumer) {
throw new UnsupportedOperationException();
}
@Override
- public void edit_getAvailableRefactorings(String file, int offset, int length,
- GetAvailableRefactoringsConsumer consumer) {
+ public void execution_deleteContext(String id) {
throw new UnsupportedOperationException();
}
@Override
- public void edit_getFixes(String file, int offset, GetFixesConsumer consumer) {
+ public void execution_mapUri(String id, String file, String uri, MapUriConsumer consumer) {
throw new UnsupportedOperationException();
}
@Override
- public void edit_getRefactoring(String kindId, String file, int offset, int length,
- boolean validateOnly, RefactoringOptions options, GetRefactoringConsumer consumer) {
+ public void execution_setSubscriptions(List<String> subscriptions) {
throw new UnsupportedOperationException();
}

Powered by Google App Engine
This is Rietveld 408576698