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

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

Issue 1122133003: fixes #157, renaming local library identifiers if needed. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: rebase and format Created 5 years, 7 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; 1 var _internal = dart.defineLibrary(_internal, {});
2 (function(exports) { 2 var core = dart.import(core);
3 var collection = dart.import(collection);
4 var math = dart.lazyImport(math);
5 var _interceptors = dart.lazyImport(_interceptors);
6 var _js_primitives = dart.lazyImport(_js_primitives);
7 (function(exports, core, collection, math, _interceptors, _js_primitives) {
3 'use strict'; 8 'use strict';
4 class EfficientLength extends core.Object {} 9 class EfficientLength extends core.Object {}
5 let ListIterable$ = dart.generic(function(E) { 10 let ListIterable$ = dart.generic(function(E) {
6 class ListIterable extends collection.IterableBase$(E) { 11 class ListIterable extends collection.IterableBase$(E) {
7 ListIterable() { 12 ListIterable() {
8 super.IterableBase(); 13 super.IterableBase();
9 } 14 }
10 get [core.$iterator]() { 15 get [core.$iterator]() {
11 return new (ListIterator$(E))(this); 16 return new (ListIterator$(E))(this);
12 } 17 }
(...skipping 2020 matching lines...) Expand 10 before | Expand all | Expand 10 after
2033 exports.ReversedListIterable$ = ReversedListIterable$; 2038 exports.ReversedListIterable$ = ReversedListIterable$;
2034 exports.ReversedListIterable = ReversedListIterable; 2039 exports.ReversedListIterable = ReversedListIterable;
2035 exports.UnmodifiableListError = UnmodifiableListError; 2040 exports.UnmodifiableListError = UnmodifiableListError;
2036 exports.NonGrowableListError = NonGrowableListError; 2041 exports.NonGrowableListError = NonGrowableListError;
2037 exports.makeListFixedLength = makeListFixedLength; 2042 exports.makeListFixedLength = makeListFixedLength;
2038 exports.Lists = Lists; 2043 exports.Lists = Lists;
2039 exports.printToConsole = printToConsole; 2044 exports.printToConsole = printToConsole;
2040 exports.Sort = Sort; 2045 exports.Sort = Sort;
2041 exports.Symbol = Symbol; 2046 exports.Symbol = Symbol;
2042 exports.POWERS_OF_TEN = POWERS_OF_TEN; 2047 exports.POWERS_OF_TEN = POWERS_OF_TEN;
2043 })(_internal || (_internal = {})); 2048 })(_internal, core, collection, math, _interceptors, _js_primitives);
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