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

Unified Diff: lib/runtime/dart/_isolate_helper.js

Issue 1117333002: Fix some static member emits (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: reformat Created 5 years, 8 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 | « lib/runtime/dart/_internal.js ('k') | lib/runtime/dart/_native_typed_data.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_isolate_helper.js
diff --git a/lib/runtime/dart/_isolate_helper.js b/lib/runtime/dart/_isolate_helper.js
index 58cee7ac9c6776c8add9a8e4e04ba3619fb35a46..55021e569755cc2c2804e50be996108ceaf9c9cf 100644
--- a/lib/runtime/dart/_isolate_helper.js
+++ b/lib/runtime/dart/_isolate_helper.js
@@ -471,7 +471,6 @@ var _isolate_helper;
}
}
}
- let _controlPort = Symbol('_controlPort');
let _scheduledControlEvents = Symbol('_scheduledControlEvents');
let _isExecutingEvent = Symbol('_isExecutingEvent');
let _updateGlobalState = Symbol('_updateGlobalState');
@@ -488,7 +487,7 @@ var _isolate_helper;
this.ports = new (core.Map$(core.int, RawReceivePortImpl))();
this.weakPorts = new (core.Set$(core.int))();
this.isolateStatics = _foreign_helper.JS_CREATE_ISOLATE();
- this.controlPort = new RawReceivePortImpl[_controlPort]();
+ this.controlPort = new RawReceivePortImpl._controlPort();
this.pauseCapability = new isolate.Capability();
this.terminateCapability = new isolate.Capability();
this.delayedEvents = dart.setType([], core.List$(_IsolateEvent));
« no previous file with comments | « lib/runtime/dart/_internal.js ('k') | lib/runtime/dart/_native_typed_data.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698