| Index: pkg/compiler/lib/src/js_emitter/model.dart
|
| diff --git a/pkg/compiler/lib/src/js_emitter/model.dart b/pkg/compiler/lib/src/js_emitter/model.dart
|
| index 62070c25bce81c36f03c140f24cb378714d47c72..50b98df95a3a3e214f30c10d8188435b61de5154 100644
|
| --- a/pkg/compiler/lib/src/js_emitter/model.dart
|
| +++ b/pkg/compiler/lib/src/js_emitter/model.dart
|
| @@ -6,7 +6,7 @@ library dart2js.new_js_emitter.model;
|
|
|
| import '../constants/values.dart' show ConstantValue;
|
| import '../deferred_load.dart' show OutputUnit;
|
| -import '../elements/elements.dart' show Element;
|
| +import '../elements/elements.dart' show Element, FieldElement;
|
| import '../js/js.dart' as js show Expression, Name, Statement, TokenFinalizer;
|
| import 'js_emitter.dart' show MetadataCollector;
|
|
|
| @@ -335,7 +335,7 @@ class MixinApplication extends Class {
|
| class Field {
|
| /// The element should only be used during the transition to the new model.
|
| /// Uses indicate missing information in the model.
|
| - final Element element;
|
| + final FieldElement element;
|
|
|
| final js.Name name;
|
| final js.Name accessorName;
|
|
|