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

Unified Diff: pkg/analyzer_plugin/lib/plugin/plugin.dart

Issue 2964113003: Remove an unused request and the associated type (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « pkg/analyzer_plugin/doc/api.html ('k') | pkg/analyzer_plugin/lib/protocol/protocol_constants.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer_plugin/lib/plugin/plugin.dart
diff --git a/pkg/analyzer_plugin/lib/plugin/plugin.dart b/pkg/analyzer_plugin/lib/plugin/plugin.dart
index be8f70a5a8d94eb91fe319b2bc0f9e8455075af8..fc9921e18382d7f5f413610d7a522cbd686aef54 100644
--- a/pkg/analyzer_plugin/lib/plugin/plugin.dart
+++ b/pkg/analyzer_plugin/lib/plugin/plugin.dart
@@ -257,14 +257,6 @@ abstract class ServerPlugin {
}
/**
- * Handle an 'analysis.setContextBuilderOptions' request.
- */
- Future<AnalysisSetContextBuilderOptionsResult>
- handleAnalysisSetContextBuilderOptions(
- AnalysisSetContextBuilderOptionsParams parameters) async =>
- null;
-
- /**
* Handle an 'analysis.setContextRoots' request.
*/
Future<AnalysisSetContextRootsResult> handleAnalysisSetContextRoots(
@@ -508,11 +500,6 @@ abstract class ServerPlugin {
var params = new AnalysisReanalyzeParams.fromRequest(request);
result = await handleAnalysisReanalyze(params);
break;
- case ANALYSIS_REQUEST_SET_CONTEXT_BUILDER_OPTIONS:
- var params =
- new AnalysisSetContextBuilderOptionsParams.fromRequest(request);
- result = await handleAnalysisSetContextBuilderOptions(params);
- break;
case ANALYSIS_REQUEST_SET_CONTEXT_ROOTS:
var params = new AnalysisSetContextRootsParams.fromRequest(request);
result = await handleAnalysisSetContextRoots(params);
« no previous file with comments | « pkg/analyzer_plugin/doc/api.html ('k') | pkg/analyzer_plugin/lib/protocol/protocol_constants.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698