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

Unified Diff: pkg/analyzer_plugin/test/integration/support/integration_test_methods.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
Index: pkg/analyzer_plugin/test/integration/support/integration_test_methods.dart
diff --git a/pkg/analyzer_plugin/test/integration/support/integration_test_methods.dart b/pkg/analyzer_plugin/test/integration/support/integration_test_methods.dart
index e09561431e5010b580d7ed4cc330a7aaaa38ce5c..39242df9a62ddb8a876886cb467200e48f608a71 100644
--- a/pkg/analyzer_plugin/test/integration/support/integration_test_methods.dart
+++ b/pkg/analyzer_plugin/test/integration/support/integration_test_methods.dart
@@ -226,24 +226,6 @@ abstract class IntegrationTestMixin {
}
/**
- * Used to set the options used to build analysis contexts. This request will
- * be sent exactly once before any context roots have been specified.
- *
- * Parameters
- *
- * options: ContextBuilderOptions
- *
- * The options used to build the analysis contexts.
- */
- Future sendAnalysisSetContextBuilderOptions(
- ContextBuilderOptions options) async {
- var params = new AnalysisSetContextBuilderOptionsParams(options).toJson();
- var result = await server.send("analysis.setContextBuilderOptions", params);
- outOfTestExpect(result, isNull);
- return null;
- }
-
- /**
* Set the list of context roots that should be analyzed.
*
* Parameters

Powered by Google App Engine
This is Rietveld 408576698