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

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

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments 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
« no previous file with comments | « lib/runtime/dart/_interceptors.js ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 var _internal = dart.defineLibrary(_internal, {}); 1 dart.library('dart/_internal', null, /* Imports */[
2 var core = dart.import(core); 2 'dart/core',
3 var collection = dart.import(collection); 3 'dart/collection'
4 var math = dart.lazyImport(math); 4 ], /* Lazy imports */[
5 var _interceptors = dart.lazyImport(_interceptors); 5 'dart/math',
6 var _js_primitives = dart.lazyImport(_js_primitives); 6 'dart/_interceptors',
7 (function(exports, core, collection, math, _interceptors, _js_primitives) { 7 'dart/_js_primitives'
8 ], function(exports, core, collection, math, _interceptors, _js_primitives) {
8 'use strict'; 9 'use strict';
9 class EfficientLength extends core.Object {} 10 class EfficientLength extends core.Object {}
10 let ListIterable$ = dart.generic(function(E) { 11 let ListIterable$ = dart.generic(function(E) {
11 class ListIterable extends collection.IterableBase$(E) { 12 class ListIterable extends collection.IterableBase$(E) {
12 ListIterable() { 13 ListIterable() {
13 super.IterableBase(); 14 super.IterableBase();
14 } 15 }
15 get iterator() { 16 get iterator() {
16 return new (ListIterator$(E))(this); 17 return new (ListIterator$(E))(this);
17 } 18 }
(...skipping 2402 matching lines...) Expand 10 before | Expand all | Expand 10 after
2420 exports.ReversedListIterable$ = ReversedListIterable$; 2421 exports.ReversedListIterable$ = ReversedListIterable$;
2421 exports.ReversedListIterable = ReversedListIterable; 2422 exports.ReversedListIterable = ReversedListIterable;
2422 exports.UnmodifiableListError = UnmodifiableListError; 2423 exports.UnmodifiableListError = UnmodifiableListError;
2423 exports.NonGrowableListError = NonGrowableListError; 2424 exports.NonGrowableListError = NonGrowableListError;
2424 exports.makeListFixedLength = makeListFixedLength; 2425 exports.makeListFixedLength = makeListFixedLength;
2425 exports.Lists = Lists; 2426 exports.Lists = Lists;
2426 exports.printToConsole = printToConsole; 2427 exports.printToConsole = printToConsole;
2427 exports.Sort = Sort; 2428 exports.Sort = Sort;
2428 exports.Symbol = Symbol; 2429 exports.Symbol = Symbol;
2429 exports.POWERS_OF_TEN = POWERS_OF_TEN; 2430 exports.POWERS_OF_TEN = POWERS_OF_TEN;
2430 })(_internal, core, collection, math, _interceptors, _js_primitives); 2431 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_interceptors.js ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698