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

Unified Diff: pkg/analyzer_plugin/test/integration/support/integration_test_methods.dart

Issue 2988743002: Remove the analysus.reanalyze request from the plugin API (Closed)
Patch Set: Restart plugins Created 3 years, 5 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 39242df9a62ddb8a876886cb467200e48f608a71..30f3c2d85bd24564797b77005db0dc0dc48333f6 100644
--- a/pkg/analyzer_plugin/test/integration/support/integration_test_methods.dart
+++ b/pkg/analyzer_plugin/test/integration/support/integration_test_methods.dart
@@ -204,28 +204,6 @@ abstract class IntegrationTestMixin {
}
/**
- * Used to force the re-analysis of everything contained in the specified
- * context roots. This should cause all previously computed analysis results
- * to be discarded and recomputed, and should cause all subscribed
- * notifications to be re-sent.
- *
- * Parameters
- *
- * roots: List<FilePath> (optional)
- *
- * A list of the context roots that are to be re-analyzed.
- *
- * If no context roots are provided, then all current context roots should
- * be re-analyzed.
- */
- Future sendAnalysisReanalyze({List<String> roots}) async {
- var params = new AnalysisReanalyzeParams(roots: roots).toJson();
- var result = await server.send("analysis.reanalyze", 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