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

Unified Diff: test/codegen/expect/sunflower/dom.js

Issue 1138793002: Tag closures with their types (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: More comment fixes 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
« no previous file with comments | « test/codegen/expect/opassign.js ('k') | test/codegen/expect/sunflower/sunflower.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/sunflower/dom.js
diff --git a/test/codegen/expect/sunflower/dom.js b/test/codegen/expect/sunflower/dom.js
index 4cf8d2f333e4dd419218d7a9d0d239731ad3d299..cf5520218b409e8370a012f07be5d198f5cb5c4c 100644
--- a/test/codegen/expect/sunflower/dom.js
+++ b/test/codegen/expect/sunflower/dom.js
@@ -8,16 +8,20 @@ var core = dart.import(core);
this.name = name;
}
}
+ dart.setSignature(JsName, {});
class Overload extends core.Object {
Overload() {
}
}
+ dart.setSignature(Overload, {});
let overload = dart.const(new Overload());
let EventListener = dart.typedef('EventListener', () => dart.functionType(dart.void, [Event]));
class Event extends core.Object {}
+ dart.setSignature(Event, {});
let InputElement = HTMLInputElement;
let CanvasElement = HTMLCanvasElement;
class RenderingContext extends core.Object {}
+ dart.setSignature(RenderingContext, {});
class CanvasDrawingStyles extends core.Object {
CanvasDrawingStyles() {
this.lineWidth = null;
@@ -30,7 +34,9 @@ var core = dart.import(core);
this.textBaseline = null;
}
}
+ dart.setSignature(CanvasDrawingStyles, {});
class CanvasPathMethods extends core.Object {}
+ dart.setSignature(CanvasPathMethods, {});
// Exports:
exports.JsName = JsName;
exports.Overload = Overload;
« no previous file with comments | « test/codegen/expect/opassign.js ('k') | test/codegen/expect/sunflower/sunflower.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698