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

Unified Diff: lib/runtime/_operations.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 | « no previous file | lib/runtime/dart/_js_mirrors.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/_operations.js
diff --git a/lib/runtime/_operations.js b/lib/runtime/_operations.js
index 46d6ccd3cb9608c69601da7e8b5fa8e973df81d7..cf5caedec604be5dbf10f1df33af88d40e52c2f3 100644
--- a/lib/runtime/_operations.js
+++ b/lib/runtime/_operations.js
@@ -162,11 +162,6 @@ dart_library.library('dart_runtime/_operations', null, /* Imports */[
}
exports.dsend = dsend;
- function dsendArray(obj, method, args) {
- return dsend(obj, method, ...args);
- }
- exports.dsendArray = dsendArray;
-
function dindex(obj, index) {
return callMethod(obj, 'get', [index], '[]');
}
« no previous file with comments | « no previous file | lib/runtime/dart/_js_mirrors.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698