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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/RemoteAnalysisServerImpl.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/src/com/google/dart/server/internal/remote/RemoteAnalysisServerImpl.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/RemoteAnalysisServerImpl.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/RemoteAnalysisServerImpl.java
index 97d7ca0ee0355d4981a75ccc0967a9410436406d..326c1773aaafeafb5b585c8070bd5ea0116efd7a 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/RemoteAnalysisServerImpl.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/RemoteAnalysisServerImpl.java
@@ -341,26 +341,6 @@ public class RemoteAnalysisServerImpl implements AnalysisServer {
}
@Override
- public void debug_createContext(String contextRoot, CreateContextConsumer consumer) {
- // TODO (jwren) debug domain not implemented yet
- }
-
- @Override
- public void debug_deleteContext(String id) {
- // TODO (jwren) debug domain not implemented yet
- }
-
- @Override
- public void debug_mapUri(String id, String file, String uri, MapUriConsumer consumer) {
- // TODO (jwren) debug domain not implemented yet
- }
-
- @Override
- public void debug_setSubscriptions(List<String> subscriptions) {
- // TODO (jwren) debug domain not implemented yet
- }
-
- @Override
public void edit_getAssists(String file, int offset, int length, GetAssistsConsumer consumer) {
String id = generateUniqueId();
sendRequestToServer(
@@ -400,6 +380,26 @@ public class RemoteAnalysisServerImpl implements AnalysisServer {
options), consumer);
}
+ @Override
+ public void execution_createContext(String contextRoot, CreateContextConsumer consumer) {
+ // TODO (jwren) debug domain not implemented yet
+ }
+
+ @Override
+ public void execution_deleteContext(String id) {
+ // TODO (jwren) debug domain not implemented yet
+ }
+
+ @Override
+ public void execution_mapUri(String id, String file, String uri, MapUriConsumer consumer) {
+ // TODO (jwren) debug domain not implemented yet
+ }
+
+ @Override
+ public void execution_setSubscriptions(List<String> subscriptions) {
+ // TODO (jwren) debug domain not implemented yet
+ }
+
public void findElementReferences(String file, int offset, boolean includePotential,
SearchIdConsumer consumer) {
String id = generateUniqueId();

Powered by Google App Engine
This is Rietveld 408576698