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

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

Issue 1093353004: fix list initializers (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: baselines 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/core.js ('k') | lib/runtime/dart/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.js
diff --git a/lib/runtime/dart/isolate.js b/lib/runtime/dart/isolate.js
index b9fb359799aee432a7f4f5e6868359b291483bad..08465c9bdc89d8298fdee6327f05adf043b5c09d 100644
--- a/lib/runtime/dart/isolate.js
+++ b/lib/runtime/dart/isolate.js
@@ -103,7 +103,7 @@ var isolate;
kill(priority) {
if (priority === void 0)
priority = Isolate.BEFORE_NEXT_EVENT;
- this.controlPort.send(new core.List.from(["kill", this.terminateCapability, priority]));
+ this.controlPort.send(["kill", this.terminateCapability, priority]);
}
ping(responsePort, pingType) {
if (pingType === void 0)
« no previous file with comments | « lib/runtime/dart/core.js ('k') | lib/runtime/dart/typed_data.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698