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

Side by Side Diff: test/codegen/expect/dir/html_input_a.js

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Add missing file 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 unified diff | Download patch
OLDNEW
1 dart.library('dir/html_input_a', null, /* Imports */[ 1 loader.library('dir/html_input_a', null, /* Imports */[
2 "dart/dart_runtime",
3 "dart/dartx",
2 'dart/core', 4 'dart/core',
3 'dir/html_input_b', 5 'dir/html_input_b',
4 'dir/html_input_c', 6 'dir/html_input_c',
5 'dir/html_input_d' 7 'dir/html_input_d'
6 ], /* Lazy imports */[ 8 ], /* Lazy imports */[
7 ], function(exports, core, html_input_b, html_input_c, html_input_d) { 9 ], function(exports, dart, dartx, core, html_input_b, html_input_c, html_input_d ) {
8 'use strict'; 10 'use strict';
9 function main() { 11 function main() {
10 core.print(`fib(${html_input_b.x} + ${html_input_c.y}) = `); 12 core.print(`fib(${html_input_b.x} + ${html_input_c.y}) = `);
11 core.print(` ... ${html_input_d.fib(dart.notNull(html_input_b.x) + dart.not Null(html_input_c.y))}`); 13 core.print(` ... ${html_input_d.fib(dart.notNull(html_input_b.x) + dart.not Null(html_input_c.y))}`);
12 } 14 }
13 dart.fn(main); 15 dart.fn(main);
14 // Exports: 16 // Exports:
15 exports.main = main; 17 exports.main = main;
16 }); 18 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698