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

Unified Diff: pkg/analysis_server/benchmark/integration/operation.dart

Issue 1855643002: More strong mode changes to analysis_server (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Backout changes to options file Created 4 years, 9 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/benchmark/integration/operation.dart
diff --git a/pkg/analysis_server/benchmark/integration/operation.dart b/pkg/analysis_server/benchmark/integration/operation.dart
index 0033d1f70dcc184a4ead69eba647d8f24580759d..eec7d458210578664958aaac663547d5bd41f0b2 100644
--- a/pkg/analysis_server/benchmark/integration/operation.dart
+++ b/pkg/analysis_server/benchmark/integration/operation.dart
@@ -91,7 +91,9 @@ class RequestOperation extends Operation {
.log(Level.FINE, 'Response received: $method : $elapsed\n $result');
}
- driver.send(method, json['params']).then((Map<String, dynamic> result) {
+ driver
+ .send(method, converter.asMap(json['params']))
+ .then((Map<String, dynamic> result) {
recordResult(true, result);
processResult(originalId, result, stopwatch);
}).catchError((exception) {

Powered by Google App Engine
This is Rietveld 408576698