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

Unified Diff: test/codegen/expect/misc.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/misc.js
diff --git a/test/codegen/expect/misc.js b/test/codegen/expect/misc.js
index 9c4419fb6307c623f1d0d0cde1020d5ffcd0b139..b384377d4596baaf981e5ab00ee422c544b498fb 100644
--- a/test/codegen/expect/misc.js
+++ b/test/codegen/expect/misc.js
@@ -6,13 +6,14 @@ var core = dart.import(core);
_Uninitialized() {
}
}
+ dart.setSignature(_Uninitialized, {});
let UNINITIALIZED = dart.const(new _Uninitialized());
- // Function main: () → dynamic
function main() {
core.print(dart.toString(1));
core.print(dart.toString(1.0));
core.print(dart.toString(1.1));
}
+ dart.fn(main);
// Exports:
exports.UNINITIALIZED = UNINITIALIZED;
exports.main = main;

Powered by Google App Engine
This is Rietveld 408576698