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

Unified Diff: lib/compiler/implementation/emitter.dart

Issue 10388006: Shorten line that was too long. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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";
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698