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

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

Issue 1007313003: Move sunflower to a new directory, make final tweaks to make it all work. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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/dom.dart ('k') | test/codegen/expect/dom.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 var dom;
2 (function(exports) {
3 'use strict';
4 class JsName extends core.Object {
5 JsName(opt$) {
6 let name = opt$.name === void 0 ? null : opt$.name;
7 this.name = name;
8 }
9 }
10 class Overload extends core.Object {
11 Overload() {
12 }
13 }
14 let overload = new Overload();
15 class Event extends core.Object {
16 }
17 class RenderingContext extends core.Object {
18 }
19 class CanvasDrawingStyles extends core.Object {
20 CanvasDrawingStyles() {
21 this.lineWidth = null;
22 this.lineCap = null;
23 this.lineJoin = null;
24 this.miterLimit = null;
25 this.lineDashOffset = null;
26 this.font = null;
27 this.textAlign = null;
28 this.textBaseline = null;
29 }
30 }
31 class CanvasPathMethods extends core.Object {
32 }
33 // Exports:
34 exports.JsName = JsName;
35 exports.Overload = Overload;
36 exports.overload = overload;
37 exports.Event = Event;
38 exports.RenderingContext = RenderingContext;
39 exports.CanvasDrawingStyles = CanvasDrawingStyles;
40 exports.CanvasPathMethods = CanvasPathMethods;
41 })(dom || (dom = window));
OLDNEW
« no previous file with comments | « test/codegen/dom.dart ('k') | test/codegen/expect/dom.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698