| Index: pkg/compiler/lib/src/ssa/locals_handler.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/locals_handler.dart b/pkg/compiler/lib/src/ssa/locals_handler.dart
|
| index d9a5bd84410193e53b5cbffc4f39c539878ee636..363511b1d4f915fcf257614e8481bead87a3a3cd 100644
|
| --- a/pkg/compiler/lib/src/ssa/locals_handler.dart
|
| +++ b/pkg/compiler/lib/src/ssa/locals_handler.dart
|
| @@ -10,7 +10,7 @@ import '../elements/types.dart';
|
| import '../io/source_information.dart';
|
| import '../js_backend/native_data.dart';
|
| import '../js_backend/interceptor_data.dart';
|
| -import '../js_model/closure.dart' show JBoxedField, JClosureField;
|
| +import '../js_model/closure.dart' show JRecordField, JClosureField;
|
| import '../tree/tree.dart' as ast;
|
| import '../types/types.dart';
|
| import '../world.dart' show ClosedWorld;
|
| @@ -362,7 +362,7 @@ class LocalsHandler {
|
| // the box.
|
| if (redirect is BoxFieldElement) {
|
| localBox = redirect.box;
|
| - } else if (redirect is JBoxedField) {
|
| + } else if (redirect is JRecordField) {
|
| localBox = redirect.box;
|
| }
|
| assert(localBox != null);
|
| @@ -432,7 +432,7 @@ class LocalsHandler {
|
| BoxLocal localBox;
|
| if (redirect is BoxFieldElement) {
|
| localBox = redirect.box;
|
| - } else if (redirect is JBoxedField) {
|
| + } else if (redirect is JRecordField) {
|
| localBox = redirect.box;
|
| }
|
| assert(localBox != null);
|
|
|