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

Unified Diff: pkg/analysis_server/lib/src/generated_protocol.dart

Issue 492563002: Make more use of generated classes in analysis server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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/generated_protocol.dart
diff --git a/pkg/analysis_server/lib/src/generated_protocol.dart b/pkg/analysis_server/lib/src/generated_protocol.dart
index 226fb1c83f924b44d8a9b067972ed21de9ad0d7a..b40df5682f38eb5ffe80a4dd32ae3a129889aafc 100644
--- a/pkg/analysis_server/lib/src/generated_protocol.dart
+++ b/pkg/analysis_server/lib/src/generated_protocol.dart
@@ -756,7 +756,7 @@ class AnalysisSetSubscriptionsParams implements HasToJson {
Map<String, dynamic> toJson() {
Map<String, dynamic> result = {};
- result["subscriptions"] = _mapMap(subscriptions, keyCallback: (AnalysisService value) => value.toJson());
+ result["subscriptions"] = mapMap(subscriptions, keyCallback: (AnalysisService value) => value.toJson());
return result;
}
@@ -823,7 +823,7 @@ class AnalysisUpdateContentParams implements HasToJson {
Map<String, dynamic> toJson() {
Map<String, dynamic> result = {};
- result["files"] = _mapMap(files, valueCallback: (dynamic value) => value.toJson());
+ result["files"] = mapMap(files, valueCallback: (dynamic value) => value.toJson());
return result;
}

Powered by Google App Engine
This is Rietveld 408576698