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

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

Issue 1083383006: fix ClassTypeAlias extends (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | lib/runtime/dart/async.js » ('j') | lib/src/codegen/js_codegen.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 var _internal; 1 var _internal;
2 (function(exports) { 2 (function(exports) {
3 'use strict'; 3 'use strict';
4 class EfficientLength extends core.Object {} 4 class EfficientLength extends core.Object {}
5 let ListIterable$ = dart.generic(function(E) { 5 let ListIterable$ = dart.generic(function(E) {
6 class ListIterable extends collection.IterableBase$(E) { 6 class ListIterable extends collection.IterableBase$(E) {
7 ListIterable() { 7 ListIterable() {
8 super.IterableBase(); 8 super.IterableBase();
9 } 9 }
10 get [core.$iterator]() { 10 get [core.$iterator]() {
(...skipping 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after
1376 if (fillValue === void 0) 1376 if (fillValue === void 0)
1377 fillValue = null; 1377 fillValue = null;
1378 throw new core.UnsupportedError("Cannot modify an unmodifiable list"); 1378 throw new core.UnsupportedError("Cannot modify an unmodifiable list");
1379 } 1379 }
1380 } 1380 }
1381 UnmodifiableListMixin[dart.implements] = () => [core.List$(E)]; 1381 UnmodifiableListMixin[dart.implements] = () => [core.List$(E)];
1382 return UnmodifiableListMixin; 1382 return UnmodifiableListMixin;
1383 }); 1383 });
1384 let UnmodifiableListMixin = UnmodifiableListMixin$(); 1384 let UnmodifiableListMixin = UnmodifiableListMixin$();
1385 let FixedLengthListBase$ = dart.generic(function(E) { 1385 let FixedLengthListBase$ = dart.generic(function(E) {
1386 class FixedLengthListBase extends dart.mixin(FixedLengthListMixin$(E)) {} 1386 class FixedLengthListBase extends dart.mixin(collection.ListBase$(E), FixedL engthListMixin$(E)) {}
1387 return FixedLengthListBase; 1387 return FixedLengthListBase;
1388 }); 1388 });
1389 let FixedLengthListBase = FixedLengthListBase$(); 1389 let FixedLengthListBase = FixedLengthListBase$();
1390 let UnmodifiableListBase$ = dart.generic(function(E) { 1390 let UnmodifiableListBase$ = dart.generic(function(E) {
1391 class UnmodifiableListBase extends dart.mixin(UnmodifiableListMixin$(E)) {} 1391 class UnmodifiableListBase extends dart.mixin(collection.ListBase$(E), Unmod ifiableListMixin$(E)) {}
1392 return UnmodifiableListBase; 1392 return UnmodifiableListBase;
1393 }); 1393 });
1394 let UnmodifiableListBase = UnmodifiableListBase$(); 1394 let UnmodifiableListBase = UnmodifiableListBase$();
1395 let _backedList = dart.JsSymbol('_backedList'); 1395 let _backedList = dart.JsSymbol('_backedList');
1396 class _ListIndicesIterable extends ListIterable$(core.int) { 1396 class _ListIndicesIterable extends ListIterable$(core.int) {
1397 _ListIndicesIterable(backedList) { 1397 _ListIndicesIterable(backedList) {
1398 this[_backedList] = backedList; 1398 this[_backedList] = backedList;
1399 super.ListIterable(); 1399 super.ListIterable();
1400 } 1400 }
1401 get [core.$length]() { 1401 get [core.$length]() {
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
1967 exports.ReversedListIterable = ReversedListIterable; 1967 exports.ReversedListIterable = ReversedListIterable;
1968 exports.UnmodifiableListError = UnmodifiableListError; 1968 exports.UnmodifiableListError = UnmodifiableListError;
1969 exports.NonGrowableListError = NonGrowableListError; 1969 exports.NonGrowableListError = NonGrowableListError;
1970 exports.makeListFixedLength = makeListFixedLength; 1970 exports.makeListFixedLength = makeListFixedLength;
1971 exports.Lists = Lists; 1971 exports.Lists = Lists;
1972 exports.printToConsole = printToConsole; 1972 exports.printToConsole = printToConsole;
1973 exports.Sort = Sort; 1973 exports.Sort = Sort;
1974 exports.Symbol = Symbol; 1974 exports.Symbol = Symbol;
1975 exports.POWERS_OF_TEN = POWERS_OF_TEN; 1975 exports.POWERS_OF_TEN = POWERS_OF_TEN;
1976 })(_internal || (_internal = {})); 1976 })(_internal || (_internal = {}));
OLDNEW
« no previous file with comments | « no previous file | lib/runtime/dart/async.js » ('j') | lib/src/codegen/js_codegen.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698