| Index: pkg/compiler/lib/src/resolution/registry.dart
 | 
| diff --git a/pkg/compiler/lib/src/resolution/registry.dart b/pkg/compiler/lib/src/resolution/registry.dart
 | 
| index d71e2952d29ffce6b8df7c2a67fb53b2a0bbf28a..1f3e943158451ecb143e653e593c67c396e0f44e 100644
 | 
| --- a/pkg/compiler/lib/src/resolution/registry.dart
 | 
| +++ b/pkg/compiler/lib/src/resolution/registry.dart
 | 
| @@ -556,6 +556,12 @@ class ResolutionRegistry implements Registry {
 | 
|      mapping.setSendStructure(node, sendStructure);
 | 
|    }
 | 
|  
 | 
| +  // TODO(johnniwinther): Remove this when [SendStructure]s are part of the
 | 
| +  // [ResolutionResult].
 | 
| +  SendStructure getSendStructure(Send node) {
 | 
| +    return mapping.getSendStructure(node);
 | 
| +  }
 | 
| +
 | 
|    void registerAsyncMarker(FunctionElement element) {
 | 
|      backend.registerAsyncMarker(element, world, this);
 | 
|    }
 | 
| 
 |