| Index: pkg/compiler/lib/src/dump_info.dart
|
| diff --git a/pkg/compiler/lib/src/dump_info.dart b/pkg/compiler/lib/src/dump_info.dart
|
| index a8c39faca0ffdb37ed0678dc179b757ef7b7a4a4..93f1312f2ba51d88546234f5c58867e90b618370 100644
|
| --- a/pkg/compiler/lib/src/dump_info.dart
|
| +++ b/pkg/compiler/lib/src/dump_info.dart
|
| @@ -16,7 +16,6 @@ import 'constants/values.dart' show ConstantValue, InterceptorConstantValue;
|
| import 'deferred_load.dart' show OutputUnit;
|
| import 'elements/elements.dart';
|
| import 'elements/visitor.dart';
|
| -import 'info/send_info.dart' show collectSendMeasurements;
|
| import 'js/js.dart' as jsAst;
|
| import 'js_backend/js_backend.dart' show JavaScriptBackend;
|
| import 'js_emitter/full_emitter/emitter.dart' as full show Emitter;
|
| @@ -313,9 +312,6 @@ class ElementInfoCollector extends BaseElementVisitor<Info, dynamic> {
|
| }
|
| info.closures = nestedClosures;
|
| result.functions.add(info);
|
| - if (const bool.fromEnvironment('send_stats')) {
|
| - info.measurements = collectSendMeasurements(element, compiler);
|
| - }
|
| return info;
|
| }
|
|
|
|
|