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

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

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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 var core = dart.defineLibrary(core, {}); 1 dart.defineLibrary('core');
2 var _js_helper = dart.lazyImport(_js_helper); 2 dart.lazyImport('_js_helper');
3 var _internal = dart.lazyImport(_internal); 3 dart.lazyImport('_internal');
4 var collection = dart.lazyImport(collection); 4 dart.lazyImport('collection');
5 var _interceptors = dart.lazyImport(_interceptors); 5 dart.lazyImport('_interceptors');
6 var math = dart.lazyImport(math); 6 dart.lazyImport('math');
7 var convert = dart.lazyImport(convert); 7 dart.lazyImport('convert');
8 (function(exports, _js_helper, _internal, collection, _interceptors, math, conve rt) { 8 (function(exports, _js_helper, _internal, collection, _interceptors, math, conve rt) {
9 'use strict'; 9 'use strict';
10 class Object { 10 class Object {
11 constructor() { 11 constructor() {
12 let name = this.constructor.name; 12 let name = this.constructor.name;
13 let init = this[name]; 13 let init = this[name];
14 let result = void 0; 14 let result = void 0;
15 if (init) 15 if (init)
16 result = init.apply(this, arguments); 16 result = init.apply(this, arguments);
17 return result === void 0 ? this : result; 17 return result === void 0 ? this : result;
(...skipping 3858 matching lines...) Expand 10 before | Expand all | Expand 10 after
3876 exports.Stopwatch = Stopwatch; 3876 exports.Stopwatch = Stopwatch;
3877 exports.String = String; 3877 exports.String = String;
3878 exports.RuneIterator = RuneIterator; 3878 exports.RuneIterator = RuneIterator;
3879 exports.StringBuffer = StringBuffer; 3879 exports.StringBuffer = StringBuffer;
3880 exports.StringSink = StringSink; 3880 exports.StringSink = StringSink;
3881 exports.Symbol = Symbol; 3881 exports.Symbol = Symbol;
3882 exports.Type = Type; 3882 exports.Type = Type;
3883 exports.Uri = Uri; 3883 exports.Uri = Uri;
3884 exports.SupportJsExtensionMethods = SupportJsExtensionMethods; 3884 exports.SupportJsExtensionMethods = SupportJsExtensionMethods;
3885 })(core, _js_helper, _internal, collection, _interceptors, math, convert); 3885 })(core, _js_helper, _internal, collection, _interceptors, math, convert);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698