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

Side by Side Diff: lib/runtime/dart/html.js

Issue 1530563003: Generate all runtime files from dart. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: simplify diff in js_codegen.dart Created 4 years, 11 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
OLDNEW
1 dart_library.library('dart/html', null, /* Imports */[ 1 dart_library.library('dart/html', null, /* Imports */[
2 "dart/_runtime", 2 'dart/_runtime',
3 'dart/math', 3 'dart/math',
4 'dart/core', 4 'dart/core',
5 'dart/_js_helper', 5 'dart/_js_helper',
6 'dart/async', 6 'dart/async',
7 'dart/collection', 7 'dart/collection',
8 'dart/_foreign_helper', 8 'dart/_foreign_helper',
9 'dart/isolate' 9 'dart/isolate'
10 ], /* Lazy imports */[ 10 ], /* Lazy imports */[
11 'dart/_metadata', 11 'dart/_metadata',
12 'dart/html_common' 12 'dart/html_common'
13 ], function(exports, dart, math, core, _js_helper, async, collection, _foreign_h elper, isolate, _metadata, html_common) { 13 ], function(exports, dart, math, core, _js_helper, async, collection, _foreign_h elper, isolate, _metadata, html_common) {
14 'use strict'; 14 'use strict';
15 let dartx = dart.dartx; 15 let dartx = dart.dartx;
16 dart.export_(exports, math, ['Rectangle', 'Point'], []); 16 dart.export(exports, math, ['Rectangle', 'Point'], []);
17 class DartHtmlDomObject extends core.Object { 17 class DartHtmlDomObject extends core.Object {
18 DartHtmlDomObject() { 18 DartHtmlDomObject() {
19 this.raw = null; 19 this.raw = null;
20 } 20 }
21 internal_() { 21 internal_() {
22 this.raw = null; 22 this.raw = null;
23 } 23 }
24 } 24 }
25 dart.defineNamedConstructor(DartHtmlDomObject, 'internal_'); 25 dart.defineNamedConstructor(DartHtmlDomObject, 'internal_');
26 dart.setSignature(DartHtmlDomObject, { 26 dart.setSignature(DartHtmlDomObject, {
(...skipping 12589 matching lines...) Expand 10 before | Expand all | Expand 10 after
12616 exports.ElementUpgrader = ElementUpgrader; 12616 exports.ElementUpgrader = ElementUpgrader;
12617 exports.NodeValidator = NodeValidator; 12617 exports.NodeValidator = NodeValidator;
12618 exports.NodeTreeSanitizer = NodeTreeSanitizer; 12618 exports.NodeTreeSanitizer = NodeTreeSanitizer;
12619 exports.UriPolicy = UriPolicy; 12619 exports.UriPolicy = UriPolicy;
12620 exports.spawnDomUri = spawnDomUri; 12620 exports.spawnDomUri = spawnDomUri;
12621 exports.unwrap_jso = unwrap_jso; 12621 exports.unwrap_jso = unwrap_jso;
12622 exports.wrap_jso = wrap_jso; 12622 exports.wrap_jso = wrap_jso;
12623 exports.createCustomUpgrader = createCustomUpgrader; 12623 exports.createCustomUpgrader = createCustomUpgrader;
12624 exports.getHtmlCreateFunction = getHtmlCreateFunction; 12624 exports.getHtmlCreateFunction = getHtmlCreateFunction;
12625 }); 12625 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698