| Index: pkg/kernel/lib/binary/ast_from_binary.dart
 | 
| diff --git a/pkg/kernel/lib/binary/ast_from_binary.dart b/pkg/kernel/lib/binary/ast_from_binary.dart
 | 
| index 1b228b80d8c6c37596bff46c4b338f72f2159778..39b1b9870c036771d2e10e762ff85e0a0fdf3179 100644
 | 
| --- a/pkg/kernel/lib/binary/ast_from_binary.dart
 | 
| +++ b/pkg/kernel/lib/binary/ast_from_binary.dart
 | 
| @@ -551,8 +551,7 @@ class BinaryBuilder {
 | 
|              readExpression(), readMemberReference(), readExpression());
 | 
|        case Tag.StaticGet:
 | 
|          int offset = readOffset();
 | 
| -        return new StaticGet(readMemberReference())
 | 
| -          ..fileOffset = offset;
 | 
| +        return new StaticGet(readMemberReference())..fileOffset = offset;
 | 
|        case Tag.StaticSet:
 | 
|          return new StaticSet(readMemberReference(), readExpression());
 | 
|        case Tag.MethodInvocation:
 | 
| 
 |