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

Unified Diff: tool/input_sdk/private/js_mirrors.dart

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/src/js/template.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/private/js_mirrors.dart
diff --git a/tool/input_sdk/private/js_mirrors.dart b/tool/input_sdk/private/js_mirrors.dart
index d55e623bd2ea3c2ed4f437783b1ceabc4d4784a1..ea48d4fe6a8315ec254a8671a93bd806aa9e8369 100644
--- a/tool/input_sdk/private/js_mirrors.dart
+++ b/tool/input_sdk/private/js_mirrors.dart
@@ -41,7 +41,7 @@ void _dput(obj, String name, val) {
}
dynamic _dsend(obj, String name, List args) {
- return JS('', '#.dsendArray(#, #, #)', _dart, obj, name, args);
+ return JS('', '#.dsend(#, #, ...#)', _dart, obj, name, args);
}
class JsInstanceMirror implements InstanceMirror {
« no previous file with comments | « lib/src/js/template.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698