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

Side by Side Diff: test/codegen/expect/varargs.js

Issue 1424133007: Compile package:js.{rest, spread} helpers (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Use freshly released version 0.6.0-beta.6 of package:js ran formatter Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « test/codegen/expect/js/src/varargs.txt ('k') | test/codegen/expect/varargs.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 dart_library.library('varargs', null, /* Imports */[
2 "dart/_runtime"
3 ], /* Lazy imports */[
4 ], function(exports, dart) {
5 'use strict';
6 let dartx = dart.dartx;
7 function varargsTest(x, ...others) {
8 let args = [1, others];
9 dart.dsend(x, 'call', ...args);
10 }
11 dart.fn(varargsTest);
12 function varargsTest2(x, ...others) {
13 let args = [1, others];
14 dart.dsend(x, 'call', ...args);
15 }
16 dart.fn(varargsTest2);
17 // Exports:
18 exports.varargsTest = varargsTest;
19 exports.varargsTest2 = varargsTest2;
20 });
OLDNEW
« no previous file with comments | « test/codegen/expect/js/src/varargs.txt ('k') | test/codegen/expect/varargs.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698