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

Unified Diff: pkg/analysis_server/lib/src/plugin/request_converter.dart

Issue 2843093002: Send re-analyze requests to plugins (Closed)
Patch Set: Created 3 years, 8 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/analysis_server/lib/src/plugin/request_converter.dart
diff --git a/pkg/analysis_server/lib/src/plugin/request_converter.dart b/pkg/analysis_server/lib/src/plugin/request_converter.dart
index 9d0971ef519415dbeea8999733cb00f9801d0383..8613ef9bdfdaefe6b4c2ac316008d599576a0c7a 100644
--- a/pkg/analysis_server/lib/src/plugin/request_converter.dart
+++ b/pkg/analysis_server/lib/src/plugin/request_converter.dart
@@ -11,6 +11,11 @@ import 'package:analyzer_plugin/protocol/protocol_generated.dart' as plugin;
* protocol and the server protocol.
*/
class RequestConverter {
+ plugin.AnalysisReanalyzeParams convertAnalysisReanalyzeParams(
+ server.AnalysisReanalyzeParams params) {
+ return new plugin.AnalysisReanalyzeParams(roots: params.roots);
+ }
+
plugin.AnalysisService convertAnalysisService(
server.AnalysisService service) {
return new plugin.AnalysisService(service.name);
« no previous file with comments | « pkg/analysis_server/lib/src/plugin/plugin_manager.dart ('k') | pkg/analysis_server/test/analysis/reanalyze_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698