| Index: lib/compiler/implementation/emitter.dart
|
| diff --git a/lib/compiler/implementation/emitter.dart b/lib/compiler/implementation/emitter.dart
|
| index 8cf005060cde3f637054a515c4cc487f6cd9aa98..dda702ae1b39e367d535a9e8d545d9378d995eb1 100644
|
| --- a/lib/compiler/implementation/emitter.dart
|
| +++ b/lib/compiler/implementation/emitter.dart
|
| @@ -174,10 +174,10 @@ function() {
|
| var isolateProperties = oldIsolate.${namer.ISOLATE_PROPERTIES};
|
| var isolatePrototype = oldIsolate.prototype;
|
| var str = "{\\n";
|
| - str += "var isolateProperties = $isolate.${namer.ISOLATE_PROPERTIES};\\n";
|
| + str += "var properties = $isolate.${namer.ISOLATE_PROPERTIES};\\n";
|
| for (var staticName in isolateProperties) {
|
| if (Object.prototype.hasOwnProperty.call(isolateProperties, staticName)) {
|
| - str += "this." + staticName + "= isolateProperties." + staticName + ";\\n";
|
| + str += "this." + staticName + "= properties." + staticName + ";\\n";
|
| }
|
| }
|
| str += "}\\n";
|
|
|