| 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 9aa3e0823845c9b0a4dc140beea8a9eb1c583008..8dec58485534cc5eae6ea17d4edcc835832e1cd5 100644
|
| --- a/pkg/compiler/lib/src/dump_info.dart
|
| +++ b/pkg/compiler/lib/src/dump_info.dart
|
| @@ -121,6 +121,7 @@ class ElementInfoCollector extends BaseElementVisitor<Info, dynamic> {
|
|
|
| FieldInfo info = new FieldInfo(
|
| name: element.name,
|
| + coverageId: '${element.hashCode}',
|
| type: '${element.type}',
|
| inferredType: '$inferredType',
|
| size: size,
|
| @@ -261,6 +262,7 @@ class ElementInfoCollector extends BaseElementVisitor<Info, dynamic> {
|
|
|
| FunctionInfo info = new FunctionInfo(
|
| name: name,
|
| + coverageId: '${element.hashCode}',
|
| modifiers: modifiers,
|
| size: size,
|
| returnType: returnType,
|
|
|