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

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: Reverted to new .dart files in input_sdk: please compare them against previous patchset Created 5 years 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 12557 matching lines...) Expand 10 before | Expand all | Expand 10 after
12584 exports.ElementUpgrader = ElementUpgrader; 12584 exports.ElementUpgrader = ElementUpgrader;
12585 exports.NodeValidator = NodeValidator; 12585 exports.NodeValidator = NodeValidator;
12586 exports.NodeTreeSanitizer = NodeTreeSanitizer; 12586 exports.NodeTreeSanitizer = NodeTreeSanitizer;
12587 exports.UriPolicy = UriPolicy; 12587 exports.UriPolicy = UriPolicy;
12588 exports.spawnDomUri = spawnDomUri; 12588 exports.spawnDomUri = spawnDomUri;
12589 exports.unwrap_jso = unwrap_jso; 12589 exports.unwrap_jso = unwrap_jso;
12590 exports.wrap_jso = wrap_jso; 12590 exports.wrap_jso = wrap_jso;
12591 exports.createCustomUpgrader = createCustomUpgrader; 12591 exports.createCustomUpgrader = createCustomUpgrader;
12592 exports.getHtmlCreateFunction = getHtmlCreateFunction; 12592 exports.getHtmlCreateFunction = getHtmlCreateFunction;
12593 }); 12593 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698