| Index: pkg/analysis_server/benchmark/integration/instrumentation_input_converter.dart
|
| diff --git a/pkg/analysis_server/benchmark/integration/instrumentation_input_converter.dart b/pkg/analysis_server/benchmark/integration/instrumentation_input_converter.dart
|
| index 1bbd72851a3804eb4c746ee6fa276d4b9074011f..bcfca4ef157f6810b6535054eada823a5bb6f9f1 100644
|
| --- a/pkg/analysis_server/benchmark/integration/instrumentation_input_converter.dart
|
| +++ b/pkg/analysis_server/benchmark/integration/instrumentation_input_converter.dart
|
| @@ -96,7 +96,7 @@ class InstrumentationInputConverter extends CommonInputConverter {
|
|
|
| Map<String, dynamic> decodeJson(String line, String text) {
|
| try {
|
| - return JSON.decode(text);
|
| + return asMap(JSON.decode(text));
|
| } catch (e, s) {
|
| throw new AnalysisException(
|
| 'Failed to decode JSON: $text\n$line', new CaughtException(e, s));
|
|
|