| 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();
|
|
|