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

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

Issue 1232463007: dart2js: Rename "current isolate" to "static state (holder)". (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments. 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 6b06eec99bf2e747ee4b4f3b554e36d341246818..b43c51c41eb68e83052e0c45f48cf5c54e2134d8 100644
--- a/pkg/compiler/lib/src/js_emitter/model.dart
+++ b/pkg/compiler/lib/src/js_emitter/model.dart
@@ -83,7 +83,9 @@ class Program {
class Holder {
final String name;
final int index;
- Holder(this.name, this.index);
+ final bool isStaticStateHolder;
+
+ Holder(this.name, this.index, {this.isStaticStateHolder: false});
}
/**

Powered by Google App Engine
This is Rietveld 408576698