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

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

Issue 1879373004: Implement modular compilation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 8 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/expect/dir/html_input_e.txt ('k') | test/codegen/expect/dom/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 dart_library.library('dom/dom', window, /* Imports */[
2 'dart/_runtime',
3 'dart/core'
4 ], /* Lazy imports */[
5 ], function(exports, dart, core) {
6 'use strict';
7 let dartx = dart.dartx;
8 class Overload extends core.Object {
9 Overload() {
10 }
11 }
12 dart.setSignature(Overload, {
13 constructors: () => ({Overload: [Overload, []]})
14 });
15 const overload = dart.const(new Overload());
16 class CustomEvent extends core.Object {}
17 dart.setSignature(CustomEvent, {
18 constructors: () => ({CustomEvent: [CustomEvent, [core.String], {detail: dar t.dynamic, bubbles: dart.dynamic, cancelable: dart.dynamic}]})
19 });
20 class HTMLCollection extends core.Object {
21 get(index) {
22 return this["[]"](index);
23 }
24 }
25 dart.setSignature(HTMLCollection, {
26 methods: () => ({get: [Element, [core.num]]})
27 });
28 const EventListener = dart.typedef('EventListener', () => dart.functionType(da rt.void, [Event]));
29 const InputElement = HTMLInputElement;
30 const CanvasElement = HTMLCanvasElement;
31 const DivElement = HTMLDivElement;
32 const ScriptElement = HTMLScriptElement;
33 class RenderingContext extends core.Object {}
34 class CanvasDrawingStyles extends core.Object {
35 CanvasDrawingStyles() {
36 this.lineWidth = null;
37 this.lineCap = null;
38 this.lineJoin = null;
39 this.miterLimit = null;
40 this.lineDashOffset = null;
41 this.font = null;
42 this.textAlign = null;
43 this.textBaseline = null;
44 }
45 }
46 class CanvasPathMethods extends core.Object {}
47 // Exports:
48 exports.Overload = Overload;
49 exports.overload = overload;
50 exports.CustomEvent = CustomEvent;
51 exports.HTMLCollection = HTMLCollection;
52 exports.EventListener = EventListener;
53 exports.InputElement = InputElement;
54 exports.CanvasElement = CanvasElement;
55 exports.DivElement = DivElement;
56 exports.ScriptElement = ScriptElement;
57 exports.RenderingContext = RenderingContext;
58 exports.CanvasDrawingStyles = CanvasDrawingStyles;
59 exports.CanvasPathMethods = CanvasPathMethods;
60 });
OLDNEW
« no previous file with comments | « test/codegen/expect/dir/html_input_e.txt ('k') | test/codegen/expect/dom/dom.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698