| Index: lib/compiler/implementation/namer.dart
|
| diff --git a/lib/compiler/implementation/namer.dart b/lib/compiler/implementation/namer.dart
|
| index 81045b6647a2f01e80f038617e835ee1cc33bd09..527098f07b4f2c81366f5ea56105e90759e97312 100644
|
| --- a/lib/compiler/implementation/namer.dart
|
| +++ b/lib/compiler/implementation/namer.dart
|
| @@ -30,6 +30,7 @@ class Namer {
|
|
|
| final String CURRENT_ISOLATE = "\$";
|
| final String ISOLATE = "Isolate";
|
| + final String INITIAL_STATICS = "\$initialStatics";
|
|
|
|
|
| String closureInvocationName(Selector selector) {
|
| @@ -189,12 +190,12 @@ class Namer {
|
| }
|
| }
|
|
|
| - String isolateAccess(Element element) {
|
| - return "$CURRENT_ISOLATE.${getName(element)}";
|
| + String initialStaticsAccess(Element element) {
|
| + return "$ISOLATE.$INITIAL_STATICS.${getName(element)}";
|
| }
|
|
|
| - String isolatePropertyAccess(Element element) {
|
| - return "$ISOLATE.prototype.${getName(element)}";
|
| + String isolateAccess(Element element) {
|
| + return "$CURRENT_ISOLATE.${getName(element)}";
|
| }
|
|
|
| String isolateBailoutAccess(Element element) {
|
|
|