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

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

Issue 1233263003: dart2js: add isConstantsHolder to Holder class. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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 b43c51c41eb68e83052e0c45f48cf5c54e2134d8..a76c63a45979dd96bc40cc8cf6d2f9f8d3be9e34 100644
--- a/pkg/compiler/lib/src/js_emitter/model.dart
+++ b/pkg/compiler/lib/src/js_emitter/model.dart
@@ -84,8 +84,10 @@ class Holder {
final String name;
final int index;
final bool isStaticStateHolder;
+ final bool isConstantsHolder;
- Holder(this.name, this.index, {this.isStaticStateHolder: false});
+ Holder(this.name, this.index,
+ {this.isStaticStateHolder: false, this.isConstantsHolder: false});
}
/**

Powered by Google App Engine
This is Rietveld 408576698