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

Unified Diff: test/codegen/expect/dir/html_input_a.js

Issue 1138793002: Tag closures with their types (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Rebase Created 5 years, 7 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
Index: test/codegen/expect/dir/html_input_a.js
diff --git a/test/codegen/expect/dir/html_input_a.js b/test/codegen/expect/dir/html_input_a.js
index 7e1624c2a48230418b2077d677ce13efbaef2f17..d2c8d70f17d895298e93674e116cf23a548f805f 100644
--- a/test/codegen/expect/dir/html_input_a.js
+++ b/test/codegen/expect/dir/html_input_a.js
@@ -5,11 +5,11 @@ var html_input_c = dart.import(html_input_c);
var html_input_d = dart.import(html_input_d);
(function(exports, core, html_input_b, html_input_c, html_input_d) {
'use strict';
- // Function main: () → dynamic
function main() {
core.print(`fib(${html_input_b.x} + ${html_input_c.y}) = `);
core.print(` ... ${html_input_d.fib(dart.notNull(html_input_b.x) + dart.notNull(html_input_c.y))}`);
}
+ dart.fn(main);
// Exports:
exports.main = main;
})(html_input_a, core, html_input_b, html_input_c, html_input_d);

Powered by Google App Engine
This is Rietveld 408576698