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

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

Issue 1183033004: js_ast: implement rest/spread parsing (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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/_operations.js ('k') | lib/runtime/dart_runtime.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_js_mirrors.js
diff --git a/lib/runtime/dart/_js_mirrors.js b/lib/runtime/dart/_js_mirrors.js
index 0aea04bccf292cbbab4052322e692379a4aceb3c..5033617986c4f08985582755c419d25e2293ba4f 100644
--- a/lib/runtime/dart/_js_mirrors.js
+++ b/lib/runtime/dart/_js_mirrors.js
@@ -45,7 +45,7 @@ dart_library.library('dart/_js_mirrors', null, /* Imports */[
}
dart.fn(_dput, dart.void, [core.Object, core.String, core.Object]);
function _dsend(obj, name, args) {
- return exports._dart.dsendArray(obj, name, args);
+ return exports._dart.dsend(obj, name, ...args);
}
dart.fn(_dsend, core.Object, [core.Object, core.String, core.List]);
let _toJsMap = Symbol('_toJsMap');
« no previous file with comments | « lib/runtime/_operations.js ('k') | lib/runtime/dart_runtime.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698