Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(358)

Unified Diff: pkg/compiler/lib/src/js_emitter/model.dart

Issue 2642063003: Use entities in class_stub_generator. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698