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

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

Issue 537733002: Use typed RefactoringOptions in the Dart version of the protocol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update also Java generator 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 0a7a5a518947ba0541eb13d26489ef0a43772b27..ac8cf3d5609a9cd16283fdd9f49237c88ae4f90b 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
@@ -14,6 +14,7 @@
package com.google.dart.server;
import com.google.dart.server.generated.types.AnalysisOptions;
+import com.google.dart.server.generated.types.RefactoringOptions;
import java.util.List;
import java.util.Map;
@@ -112,7 +113,7 @@ public class MockAnalysisServer implements AnalysisServer {
@Override
public void edit_getRefactoring(String kindId, String file, Integer offset, Integer length,
- Boolean validateOnly, Object options, GetRefactoringConsumer consumer) {
+ Boolean validateOnly, RefactoringOptions options, GetRefactoringConsumer consumer) {
throw new UnsupportedOperationException();
}

Powered by Google App Engine
This is Rietveld 408576698