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

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

Issue 1530563003: Generate all runtime files from dart. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merged master Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « test/codegen/expect/cascade.js ('k') | test/codegen/expect/collection/algorithms.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 dart_library.library('closure', null, /* Imports */[ 1 dart_library.library('closure', null, /* Imports */[
2 "dart/_runtime", 2 'dart/_runtime',
3 'dart/core', 3 'dart/core',
4 'dart/js' 4 'dart/js'
5 ], /* Lazy imports */[ 5 ], /* Lazy imports */[
6 ], function(exports, dart, core, js) { 6 ], function(exports, dart, core, js) {
7 'use strict'; 7 'use strict';
8 let dartx = dart.dartx; 8 let dartx = dart.dartx;
9 /** @typedef {function({i: (?number|undefined)}=)} */ 9 /** @typedef {function({i: (?number|undefined)}=)} */
10 const Callback = dart.typedef('Callback', () => dart.functionType(dart.void, [ ], {i: core.int})); 10 const Callback = dart.typedef('Callback', () => dart.functionType(dart.void, [ ], {i: core.int}));
11 const Foo$ = dart.generic(function(T) { 11 const Foo$ = dart.generic(function(T) {
12 class Foo extends core.Object { 12 class Foo extends core.Object {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 exports.some_top_level_var = "abc"; 138 exports.some_top_level_var = "abc";
139 // Exports: 139 // Exports:
140 exports.Callback = Callback; 140 exports.Callback = Callback;
141 exports.Foo$ = Foo$; 141 exports.Foo$ = Foo$;
142 exports.Foo = Foo; 142 exports.Foo = Foo;
143 exports.Bar = Bar; 143 exports.Bar = Bar;
144 exports.Baz = Baz; 144 exports.Baz = Baz;
145 exports.main = main; 145 exports.main = main;
146 exports.some_top_level_constant = some_top_level_constant; 146 exports.some_top_level_constant = some_top_level_constant;
147 }); 147 });
OLDNEW
« no previous file with comments | « test/codegen/expect/cascade.js ('k') | test/codegen/expect/collection/algorithms.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698