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

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

Issue 1150623004: Fix names in named parameter lists (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: 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/async.js ('k') | lib/runtime/dart/convert.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 collection = dart.defineLibrary(collection, {}); 1 var collection = dart.defineLibrary(collection, {});
2 var _internal = dart.lazyImport(_internal); 2 var _internal = dart.lazyImport(_internal);
3 var core = dart.import(core); 3 var core = dart.import(core);
4 var _js_helper = dart.lazyImport(_js_helper); 4 var _js_helper = dart.lazyImport(_js_helper);
5 var math = dart.lazyImport(math); 5 var math = dart.lazyImport(math);
6 (function(exports, _internal, core, _js_helper, math) { 6 (function(exports, _internal, core, _js_helper, math) {
7 'use strict'; 7 'use strict';
8 let _source = Symbol('_source'); 8 let _source = Symbol('_source');
9 let UnmodifiableListView$ = dart.generic(function(E) { 9 let UnmodifiableListView$ = dart.generic(function(E) {
10 class UnmodifiableListView extends _internal.UnmodifiableListBase$(E) { 10 class UnmodifiableListView extends _internal.UnmodifiableListBase$(E) {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 return map; 96 return map;
97 } 97 }
98 } 98 }
99 HashMap[dart.implements] = () => [core.Map$(K, V)]; 99 HashMap[dart.implements] = () => [core.Map$(K, V)];
100 dart.defineNamedConstructor(HashMap, 'identity'); 100 dart.defineNamedConstructor(HashMap, 'identity');
101 dart.defineNamedConstructor(HashMap, 'from'); 101 dart.defineNamedConstructor(HashMap, 'from');
102 dart.defineNamedConstructor(HashMap, 'fromIterable'); 102 dart.defineNamedConstructor(HashMap, 'fromIterable');
103 dart.defineNamedConstructor(HashMap, 'fromIterables'); 103 dart.defineNamedConstructor(HashMap, 'fromIterables');
104 dart.setSignature(HashMap, { 104 dart.setSignature(HashMap, {
105 constructors: () => ({ 105 constructors: () => ({
106 HashMap: [HashMap$(K, V), [], {qual: dart.functionType(core.bool, [K, K] ), ashCod: dart.functionType(core.int, [K]), sValidKe: dart.functionType(core.bo ol, [core.Object])}], 106 HashMap: [HashMap$(K, V), [], {equals: dart.functionType(core.bool, [K, K]), hashCode: dart.functionType(core.int, [K]), isValidKey: dart.functionType(c ore.bool, [core.Object])}],
107 identity: [HashMap$(K, V), []], 107 identity: [HashMap$(K, V), []],
108 from: [HashMap$(K, V), [core.Map]], 108 from: [HashMap$(K, V), [core.Map]],
109 fromIterable: [HashMap$(K, V), [core.Iterable], {e: dart.functionType(K, [dart.bottom]), alu: dart.functionType(V, [dart.bottom])}], 109 fromIterable: [HashMap$(K, V), [core.Iterable], {key: dart.functionType( K, [dart.bottom]), value: dart.functionType(V, [dart.bottom])}],
110 fromIterables: [HashMap$(K, V), [core.Iterable$(K), core.Iterable$(V)]] 110 fromIterables: [HashMap$(K, V), [core.Iterable$(K), core.Iterable$(V)]]
111 }) 111 })
112 }); 112 });
113 return HashMap; 113 return HashMap;
114 }); 114 });
115 let HashMap = HashMap$(); 115 let HashMap = HashMap$();
116 let SetMixin$ = dart.generic(function(E) { 116 let SetMixin$ = dart.generic(function(E) {
117 class SetMixin extends core.Object { 117 class SetMixin extends core.Object {
118 [Symbol.iterator]() { 118 [Symbol.iterator]() {
119 return new dart.JsIterator(this[core.$iterator]); 119 return new dart.JsIterator(this[core.$iterator]);
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 clear: [dart.void, []], 388 clear: [dart.void, []],
389 addAll: [dart.void, [core.Iterable$(E)]], 389 addAll: [dart.void, [core.Iterable$(E)]],
390 removeAll: [dart.void, [core.Iterable$(core.Object)]], 390 removeAll: [dart.void, [core.Iterable$(core.Object)]],
391 retainAll: [dart.void, [core.Iterable$(core.Object)]], 391 retainAll: [dart.void, [core.Iterable$(core.Object)]],
392 removeWhere: [dart.void, [dart.functionType(core.bool, [E])]], 392 removeWhere: [dart.void, [dart.functionType(core.bool, [E])]],
393 retainWhere: [dart.void, [dart.functionType(core.bool, [E])]], 393 retainWhere: [dart.void, [dart.functionType(core.bool, [E])]],
394 containsAll: [core.bool, [core.Iterable$(core.Object)]], 394 containsAll: [core.bool, [core.Iterable$(core.Object)]],
395 union: [core.Set$(E), [core.Set$(E)]], 395 union: [core.Set$(E), [core.Set$(E)]],
396 intersection: [core.Set$(E), [core.Set$(core.Object)]], 396 intersection: [core.Set$(E), [core.Set$(core.Object)]],
397 difference: [core.Set$(E), [core.Set$(core.Object)]], 397 difference: [core.Set$(E), [core.Set$(core.Object)]],
398 [core.$toList]: [core.List$(E), [], {rowabl: core.bool}], 398 [core.$toList]: [core.List$(E), [], {growable: core.bool}],
399 [core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]], 399 [core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]],
400 [core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]], 400 [core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
401 [core.$expand]: [core.Iterable, [dart.functionType(core.Iterable, [E])]] , 401 [core.$expand]: [core.Iterable, [dart.functionType(core.Iterable, [E])]] ,
402 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]], 402 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]],
403 [core.$reduce]: [E, [dart.functionType(E, [E, E])]], 403 [core.$reduce]: [E, [dart.functionType(E, [E, E])]],
404 [core.$fold]: [core.Object, [core.Object, dart.functionType(core.Object, [dart.bottom, E])]], 404 [core.$fold]: [core.Object, [core.Object, dart.functionType(core.Object, [dart.bottom, E])]],
405 [core.$every]: [core.bool, [dart.functionType(core.bool, [E])]], 405 [core.$every]: [core.bool, [dart.functionType(core.bool, [E])]],
406 [core.$join]: [core.String, [], [core.String]], 406 [core.$join]: [core.String, [], [core.String]],
407 [core.$any]: [core.bool, [dart.functionType(core.bool, [E])]], 407 [core.$any]: [core.bool, [dart.functionType(core.bool, [E])]],
408 [core.$take]: [core.Iterable$(E), [core.int]], 408 [core.$take]: [core.Iterable$(E), [core.int]],
409 [core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]], 409 [core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]],
410 [core.$skip]: [core.Iterable$(E), [core.int]], 410 [core.$skip]: [core.Iterable$(E), [core.int]],
411 [core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]], 411 [core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]],
412 [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart .functionType(E, [])}], 412 [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: da rt.functionType(E, [])}],
413 [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart. functionType(E, [])}], 413 [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: dar t.functionType(E, [])}],
414 [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])]], 414 [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])]],
415 [core.$elementAt]: [E, [core.int]] 415 [core.$elementAt]: [E, [core.int]]
416 }) 416 })
417 }); 417 });
418 return SetMixin; 418 return SetMixin;
419 }); 419 });
420 let SetMixin = SetMixin$(); 420 let SetMixin = SetMixin$();
421 let SetBase$ = dart.generic(function(E) { 421 let SetBase$ = dart.generic(function(E) {
422 class SetBase extends SetMixin$(E) { 422 class SetBase extends SetMixin$(E) {
423 static setToString(set) { 423 static setToString(set) {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 } 509 }
510 [Symbol.iterator]() { 510 [Symbol.iterator]() {
511 return new dart.JsIterator(this[core.$iterator]); 511 return new dart.JsIterator(this[core.$iterator]);
512 } 512 }
513 } 513 }
514 HashSet[dart.implements] = () => [core.Set$(E)]; 514 HashSet[dart.implements] = () => [core.Set$(E)];
515 dart.defineNamedConstructor(HashSet, 'identity'); 515 dart.defineNamedConstructor(HashSet, 'identity');
516 dart.defineNamedConstructor(HashSet, 'from'); 516 dart.defineNamedConstructor(HashSet, 'from');
517 dart.setSignature(HashSet, { 517 dart.setSignature(HashSet, {
518 constructors: () => ({ 518 constructors: () => ({
519 HashSet: [HashSet$(E), [], {qual: dart.functionType(core.bool, [E, E]), ashCod: dart.functionType(core.int, [E]), sValidKe: dart.functionType(core.bool, [core.Object])}], 519 HashSet: [HashSet$(E), [], {equals: dart.functionType(core.bool, [E, E]) , hashCode: dart.functionType(core.int, [E]), isValidKey: dart.functionType(core .bool, [core.Object])}],
520 identity: [HashSet$(E), []], 520 identity: [HashSet$(E), []],
521 from: [HashSet$(E), [core.Iterable]] 521 from: [HashSet$(E), [core.Iterable]]
522 }) 522 })
523 }); 523 });
524 return HashSet; 524 return HashSet;
525 }); 525 });
526 let HashSet = HashSet$(); 526 let HashSet = HashSet$();
527 let IterableMixin$ = dart.generic(function(E) { 527 let IterableMixin$ = dart.generic(function(E) {
528 class IterableMixin extends core.Object { 528 class IterableMixin extends core.Object {
529 [core.$map](f) { 529 [core.$map](f) {
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 [core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]], 740 [core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]],
741 [core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]], 741 [core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
742 [core.$expand]: [core.Iterable, [dart.functionType(core.Iterable, [E])]] , 742 [core.$expand]: [core.Iterable, [dart.functionType(core.Iterable, [E])]] ,
743 [core.$contains]: [core.bool, [core.Object]], 743 [core.$contains]: [core.bool, [core.Object]],
744 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]], 744 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]],
745 [core.$reduce]: [E, [dart.functionType(E, [E, E])]], 745 [core.$reduce]: [E, [dart.functionType(E, [E, E])]],
746 [core.$fold]: [core.Object, [core.Object, dart.functionType(core.Object, [dart.bottom, E])]], 746 [core.$fold]: [core.Object, [core.Object, dart.functionType(core.Object, [dart.bottom, E])]],
747 [core.$every]: [core.bool, [dart.functionType(core.bool, [E])]], 747 [core.$every]: [core.bool, [dart.functionType(core.bool, [E])]],
748 [core.$join]: [core.String, [], [core.String]], 748 [core.$join]: [core.String, [], [core.String]],
749 [core.$any]: [core.bool, [dart.functionType(core.bool, [E])]], 749 [core.$any]: [core.bool, [dart.functionType(core.bool, [E])]],
750 [core.$toList]: [core.List$(E), [], {rowabl: core.bool}], 750 [core.$toList]: [core.List$(E), [], {growable: core.bool}],
751 [core.$toSet]: [core.Set$(E), []], 751 [core.$toSet]: [core.Set$(E), []],
752 [core.$take]: [core.Iterable$(E), [core.int]], 752 [core.$take]: [core.Iterable$(E), [core.int]],
753 [core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]], 753 [core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]],
754 [core.$skip]: [core.Iterable$(E), [core.int]], 754 [core.$skip]: [core.Iterable$(E), [core.int]],
755 [core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]], 755 [core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]],
756 [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart .functionType(E, [])}], 756 [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: da rt.functionType(E, [])}],
757 [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart. functionType(E, [])}], 757 [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: dar t.functionType(E, [])}],
758 [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])]], 758 [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])]],
759 [core.$elementAt]: [E, [core.int]] 759 [core.$elementAt]: [E, [core.int]]
760 }) 760 })
761 }); 761 });
762 return IterableMixin; 762 return IterableMixin;
763 }); 763 });
764 let IterableMixin = IterableMixin$(); 764 let IterableMixin = IterableMixin$();
765 let IterableBase$ = dart.generic(function(E) { 765 let IterableBase$ = dart.generic(function(E) {
766 class IterableBase extends core.Object { 766 class IterableBase extends core.Object {
767 IterableBase() { 767 IterableBase() {
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 [core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]], 1111 [core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]],
1112 [core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]], 1112 [core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
1113 [core.$expand]: [core.Iterable, [dart.functionType(core.Iterable, [E])]] , 1113 [core.$expand]: [core.Iterable, [dart.functionType(core.Iterable, [E])]] ,
1114 [core.$contains]: [core.bool, [core.Object]], 1114 [core.$contains]: [core.bool, [core.Object]],
1115 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]], 1115 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]],
1116 [core.$reduce]: [E, [dart.functionType(E, [E, E])]], 1116 [core.$reduce]: [E, [dart.functionType(E, [E, E])]],
1117 [core.$fold]: [core.Object, [core.Object, dart.functionType(core.Object, [dart.bottom, E])]], 1117 [core.$fold]: [core.Object, [core.Object, dart.functionType(core.Object, [dart.bottom, E])]],
1118 [core.$every]: [core.bool, [dart.functionType(core.bool, [E])]], 1118 [core.$every]: [core.bool, [dart.functionType(core.bool, [E])]],
1119 [core.$join]: [core.String, [], [core.String]], 1119 [core.$join]: [core.String, [], [core.String]],
1120 [core.$any]: [core.bool, [dart.functionType(core.bool, [E])]], 1120 [core.$any]: [core.bool, [dart.functionType(core.bool, [E])]],
1121 [core.$toList]: [core.List$(E), [], {rowabl: core.bool}], 1121 [core.$toList]: [core.List$(E), [], {growable: core.bool}],
1122 [core.$toSet]: [core.Set$(E), []], 1122 [core.$toSet]: [core.Set$(E), []],
1123 [core.$take]: [core.Iterable$(E), [core.int]], 1123 [core.$take]: [core.Iterable$(E), [core.int]],
1124 [core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]], 1124 [core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]],
1125 [core.$skip]: [core.Iterable$(E), [core.int]], 1125 [core.$skip]: [core.Iterable$(E), [core.int]],
1126 [core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]], 1126 [core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]],
1127 [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart .functionType(E, [])}], 1127 [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: da rt.functionType(E, [])}],
1128 [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart. functionType(E, [])}], 1128 [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: dar t.functionType(E, [])}],
1129 [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])]], 1129 [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])]],
1130 [core.$elementAt]: [E, [core.int]] 1130 [core.$elementAt]: [E, [core.int]]
1131 }), 1131 }),
1132 statics: () => ({ 1132 statics: () => ({
1133 iterableToShortString: [core.String, [core.Iterable], [core.String, core .String]], 1133 iterableToShortString: [core.String, [core.Iterable], [core.String, core .String]],
1134 iterableToFullString: [core.String, [core.Iterable], [core.String, core. String]], 1134 iterableToFullString: [core.String, [core.Iterable], [core.String, core. String]],
1135 _isToStringVisiting: [core.bool, [core.Object]], 1135 _isToStringVisiting: [core.bool, [core.Object]],
1136 _iterablePartsToStrings: [dart.void, [core.Iterable, core.List]] 1136 _iterablePartsToStrings: [dart.void, [core.Iterable, core.List]]
1137 }), 1137 }),
1138 names: ['iterableToShortString', 'iterableToFullString', '_isToStringVisit ing', '_iterablePartsToStrings'] 1138 names: ['iterableToShortString', 'iterableToFullString', '_isToStringVisit ing', '_iterablePartsToStrings']
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1249 } 1249 }
1250 LinkedHashMap[dart.implements] = () => [HashMap$(K, V)]; 1250 LinkedHashMap[dart.implements] = () => [HashMap$(K, V)];
1251 dart.defineNamedConstructor(LinkedHashMap, 'identity'); 1251 dart.defineNamedConstructor(LinkedHashMap, 'identity');
1252 dart.defineNamedConstructor(LinkedHashMap, 'from'); 1252 dart.defineNamedConstructor(LinkedHashMap, 'from');
1253 dart.defineNamedConstructor(LinkedHashMap, 'fromIterable'); 1253 dart.defineNamedConstructor(LinkedHashMap, 'fromIterable');
1254 dart.defineNamedConstructor(LinkedHashMap, 'fromIterables'); 1254 dart.defineNamedConstructor(LinkedHashMap, 'fromIterables');
1255 dart.defineNamedConstructor(LinkedHashMap, '_literal'); 1255 dart.defineNamedConstructor(LinkedHashMap, '_literal');
1256 dart.defineNamedConstructor(LinkedHashMap, '_empty'); 1256 dart.defineNamedConstructor(LinkedHashMap, '_empty');
1257 dart.setSignature(LinkedHashMap, { 1257 dart.setSignature(LinkedHashMap, {
1258 constructors: () => ({ 1258 constructors: () => ({
1259 LinkedHashMap: [LinkedHashMap$(K, V), [], {qual: dart.functionType(core. bool, [K, K]), ashCod: dart.functionType(core.int, [K]), sValidKe: dart.function Type(core.bool, [core.Object])}], 1259 LinkedHashMap: [LinkedHashMap$(K, V), [], {equals: dart.functionType(cor e.bool, [K, K]), hashCode: dart.functionType(core.int, [K]), isValidKey: dart.fu nctionType(core.bool, [core.Object])}],
1260 identity: [LinkedHashMap$(K, V), []], 1260 identity: [LinkedHashMap$(K, V), []],
1261 from: [LinkedHashMap$(K, V), [core.Map]], 1261 from: [LinkedHashMap$(K, V), [core.Map]],
1262 fromIterable: [LinkedHashMap$(K, V), [core.Iterable], {e: dart.functionT ype(K, [dart.bottom]), alu: dart.functionType(V, [dart.bottom])}], 1262 fromIterable: [LinkedHashMap$(K, V), [core.Iterable], {key: dart.functio nType(K, [dart.bottom]), value: dart.functionType(V, [dart.bottom])}],
1263 fromIterables: [LinkedHashMap$(K, V), [core.Iterable$(K), core.Iterable$ (V)]], 1263 fromIterables: [LinkedHashMap$(K, V), [core.Iterable$(K), core.Iterable$ (V)]],
1264 _literal: [LinkedHashMap$(K, V), [core.List]], 1264 _literal: [LinkedHashMap$(K, V), [core.List]],
1265 _empty: [LinkedHashMap$(K, V), []] 1265 _empty: [LinkedHashMap$(K, V), []]
1266 }) 1266 })
1267 }); 1267 });
1268 return LinkedHashMap; 1268 return LinkedHashMap;
1269 }); 1269 });
1270 let LinkedHashMap = LinkedHashMap$(); 1270 let LinkedHashMap = LinkedHashMap$();
1271 let LinkedHashSet$ = dart.generic(function(E) { 1271 let LinkedHashSet$ = dart.generic(function(E) {
1272 class LinkedHashSet extends core.Object { 1272 class LinkedHashSet extends core.Object {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1310 } 1310 }
1311 [Symbol.iterator]() { 1311 [Symbol.iterator]() {
1312 return new dart.JsIterator(this[core.$iterator]); 1312 return new dart.JsIterator(this[core.$iterator]);
1313 } 1313 }
1314 } 1314 }
1315 LinkedHashSet[dart.implements] = () => [HashSet$(E)]; 1315 LinkedHashSet[dart.implements] = () => [HashSet$(E)];
1316 dart.defineNamedConstructor(LinkedHashSet, 'identity'); 1316 dart.defineNamedConstructor(LinkedHashSet, 'identity');
1317 dart.defineNamedConstructor(LinkedHashSet, 'from'); 1317 dart.defineNamedConstructor(LinkedHashSet, 'from');
1318 dart.setSignature(LinkedHashSet, { 1318 dart.setSignature(LinkedHashSet, {
1319 constructors: () => ({ 1319 constructors: () => ({
1320 LinkedHashSet: [LinkedHashSet$(E), [], {qual: dart.functionType(core.boo l, [E, E]), ashCod: dart.functionType(core.int, [E]), sValidKe: dart.functionTyp e(core.bool, [core.Object])}], 1320 LinkedHashSet: [LinkedHashSet$(E), [], {equals: dart.functionType(core.b ool, [E, E]), hashCode: dart.functionType(core.int, [E]), isValidKey: dart.funct ionType(core.bool, [core.Object])}],
1321 identity: [LinkedHashSet$(E), []], 1321 identity: [LinkedHashSet$(E), []],
1322 from: [LinkedHashSet$(E), [core.Iterable$(E)]] 1322 from: [LinkedHashSet$(E), [core.Iterable$(E)]]
1323 }) 1323 })
1324 }); 1324 });
1325 return LinkedHashSet; 1325 return LinkedHashSet;
1326 }); 1326 });
1327 let LinkedHashSet = LinkedHashSet$(); 1327 let LinkedHashSet = LinkedHashSet$();
1328 let _modificationCount = Symbol('_modificationCount'); 1328 let _modificationCount = Symbol('_modificationCount');
1329 let _length = Symbol('_length'); 1329 let _length = Symbol('_length');
1330 let _next = Symbol('_next'); 1330 let _next = Symbol('_next');
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
2022 } 2022 }
2023 } 2023 }
2024 ListMixin[dart.implements] = () => [core.List$(E)]; 2024 ListMixin[dart.implements] = () => [core.List$(E)];
2025 dart.setSignature(ListMixin, { 2025 dart.setSignature(ListMixin, {
2026 methods: () => ({ 2026 methods: () => ({
2027 [core.$elementAt]: [E, [core.int]], 2027 [core.$elementAt]: [E, [core.int]],
2028 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]], 2028 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]],
2029 [core.$contains]: [core.bool, [core.Object]], 2029 [core.$contains]: [core.bool, [core.Object]],
2030 [core.$every]: [core.bool, [dart.functionType(core.bool, [E])]], 2030 [core.$every]: [core.bool, [dart.functionType(core.bool, [E])]],
2031 [core.$any]: [core.bool, [dart.functionType(core.bool, [E])]], 2031 [core.$any]: [core.bool, [dart.functionType(core.bool, [E])]],
2032 [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart .functionType(E, [])}], 2032 [core.$firstWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: da rt.functionType(E, [])}],
2033 [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {rEls: dart. functionType(E, [])}], 2033 [core.$lastWhere]: [E, [dart.functionType(core.bool, [E])], {orElse: dar t.functionType(E, [])}],
2034 [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])]], 2034 [core.$singleWhere]: [E, [dart.functionType(core.bool, [E])]],
2035 [core.$join]: [core.String, [], [core.String]], 2035 [core.$join]: [core.String, [], [core.String]],
2036 [core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]], 2036 [core.$where]: [core.Iterable$(E), [dart.functionType(core.bool, [E])]],
2037 [core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]], 2037 [core.$map]: [core.Iterable, [dart.functionType(core.Object, [E])]],
2038 [core.$expand]: [core.Iterable, [dart.functionType(core.Iterable, [E])]] , 2038 [core.$expand]: [core.Iterable, [dart.functionType(core.Iterable, [E])]] ,
2039 [core.$reduce]: [E, [dart.functionType(E, [E, E])]], 2039 [core.$reduce]: [E, [dart.functionType(E, [E, E])]],
2040 [core.$fold]: [core.Object, [core.Object, dart.functionType(core.Object, [dart.bottom, E])]], 2040 [core.$fold]: [core.Object, [core.Object, dart.functionType(core.Object, [dart.bottom, E])]],
2041 [core.$skip]: [core.Iterable$(E), [core.int]], 2041 [core.$skip]: [core.Iterable$(E), [core.int]],
2042 [core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]], 2042 [core.$skipWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]],
2043 [core.$take]: [core.Iterable$(E), [core.int]], 2043 [core.$take]: [core.Iterable$(E), [core.int]],
2044 [core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]], 2044 [core.$takeWhile]: [core.Iterable$(E), [dart.functionType(core.bool, [E] )]],
2045 [core.$toList]: [core.List$(E), [], {rowabl: core.bool}], 2045 [core.$toList]: [core.List$(E), [], {growable: core.bool}],
2046 [core.$toSet]: [core.Set$(E), []], 2046 [core.$toSet]: [core.Set$(E), []],
2047 [core.$add]: [dart.void, [E]], 2047 [core.$add]: [dart.void, [E]],
2048 [core.$addAll]: [dart.void, [core.Iterable$(E)]], 2048 [core.$addAll]: [dart.void, [core.Iterable$(E)]],
2049 [core.$remove]: [core.bool, [core.Object]], 2049 [core.$remove]: [core.bool, [core.Object]],
2050 [core.$removeWhere]: [dart.void, [dart.functionType(core.bool, [E])]], 2050 [core.$removeWhere]: [dart.void, [dart.functionType(core.bool, [E])]],
2051 [core.$retainWhere]: [dart.void, [dart.functionType(core.bool, [E])]], 2051 [core.$retainWhere]: [dart.void, [dart.functionType(core.bool, [E])]],
2052 [core.$clear]: [dart.void, []], 2052 [core.$clear]: [dart.void, []],
2053 [core.$removeLast]: [E, []], 2053 [core.$removeLast]: [E, []],
2054 [core.$sort]: [dart.void, [], [dart.functionType(core.int, [E, E])]], 2054 [core.$sort]: [dart.void, [], [dart.functionType(core.int, [E, E])]],
2055 [core.$shuffle]: [dart.void, [], [math.Random]], 2055 [core.$shuffle]: [dart.void, [], [math.Random]],
(...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after
3053 ListQueue[dart.implements] = () => [Queue$(E)]; 3053 ListQueue[dart.implements] = () => [Queue$(E)];
3054 dart.defineNamedConstructor(ListQueue, 'from'); 3054 dart.defineNamedConstructor(ListQueue, 'from');
3055 dart.setSignature(ListQueue, { 3055 dart.setSignature(ListQueue, {
3056 constructors: () => ({ 3056 constructors: () => ({
3057 ListQueue: [ListQueue$(E), [], [core.int]], 3057 ListQueue: [ListQueue$(E), [], [core.int]],
3058 from: [ListQueue$(E), [core.Iterable]] 3058 from: [ListQueue$(E), [core.Iterable]]
3059 }), 3059 }),
3060 methods: () => ({ 3060 methods: () => ({
3061 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]], 3061 [core.$forEach]: [dart.void, [dart.functionType(dart.void, [E])]],
3062 [core.$elementAt]: [E, [core.int]], 3062 [core.$elementAt]: [E, [core.int]],
3063 [core.$toList]: [core.List$(E), [], {rowabl: core.bool}], 3063 [core.$toList]: [core.List$(E), [], {growable: core.bool}],
3064 add: [dart.void, [E]], 3064 add: [dart.void, [E]],
3065 addAll: [dart.void, [core.Iterable$(E)]], 3065 addAll: [dart.void, [core.Iterable$(E)]],
3066 remove: [core.bool, [core.Object]], 3066 remove: [core.bool, [core.Object]],
3067 [_filterWhere]: [dart.void, [dart.functionType(core.bool, [E]), core.boo l]], 3067 [_filterWhere]: [dart.void, [dart.functionType(core.bool, [E]), core.boo l]],
3068 removeWhere: [dart.void, [dart.functionType(core.bool, [E])]], 3068 removeWhere: [dart.void, [dart.functionType(core.bool, [E])]],
3069 retainWhere: [dart.void, [dart.functionType(core.bool, [E])]], 3069 retainWhere: [dart.void, [dart.functionType(core.bool, [E])]],
3070 clear: [dart.void, []], 3070 clear: [dart.void, []],
3071 addLast: [dart.void, [E]], 3071 addLast: [dart.void, [E]],
3072 addFirst: [dart.void, [E]], 3072 addFirst: [dart.void, [E]],
3073 removeFirst: [E, []], 3073 removeFirst: [E, []],
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
3537 } 3537 }
3538 SplayTreeMap[dart.implements] = () => [core.Map$(K, V)]; 3538 SplayTreeMap[dart.implements] = () => [core.Map$(K, V)];
3539 dart.defineNamedConstructor(SplayTreeMap, 'from'); 3539 dart.defineNamedConstructor(SplayTreeMap, 'from');
3540 dart.defineNamedConstructor(SplayTreeMap, 'fromIterable'); 3540 dart.defineNamedConstructor(SplayTreeMap, 'fromIterable');
3541 dart.defineNamedConstructor(SplayTreeMap, 'fromIterables'); 3541 dart.defineNamedConstructor(SplayTreeMap, 'fromIterables');
3542 dart.defineNamedConstructor(SplayTreeMap, '_internal'); 3542 dart.defineNamedConstructor(SplayTreeMap, '_internal');
3543 dart.setSignature(SplayTreeMap, { 3543 dart.setSignature(SplayTreeMap, {
3544 constructors: () => ({ 3544 constructors: () => ({
3545 SplayTreeMap: [SplayTreeMap$(K, V), [], [dart.functionType(core.int, [K, K]), dart.functionType(core.bool, [core.Object])]], 3545 SplayTreeMap: [SplayTreeMap$(K, V), [], [dart.functionType(core.int, [K, K]), dart.functionType(core.bool, [core.Object])]],
3546 from: [SplayTreeMap$(K, V), [core.Map], [dart.functionType(core.int, [K, K]), dart.functionType(core.bool, [core.Object])]], 3546 from: [SplayTreeMap$(K, V), [core.Map], [dart.functionType(core.int, [K, K]), dart.functionType(core.bool, [core.Object])]],
3547 fromIterable: [SplayTreeMap$(K, V), [core.Iterable], {e: dart.functionTy pe(K, [dart.bottom]), alu: dart.functionType(V, [dart.bottom]), ompar: dart.func tionType(core.int, [K, K]), sValidKe: dart.functionType(core.bool, [core.Object] )}], 3547 fromIterable: [SplayTreeMap$(K, V), [core.Iterable], {key: dart.function Type(K, [dart.bottom]), value: dart.functionType(V, [dart.bottom]), compare: dar t.functionType(core.int, [K, K]), isValidKey: dart.functionType(core.bool, [core .Object])}],
3548 fromIterables: [SplayTreeMap$(K, V), [core.Iterable$(K), core.Iterable$( V)], [dart.functionType(core.int, [K, K]), dart.functionType(core.bool, [core.Ob ject])]], 3548 fromIterables: [SplayTreeMap$(K, V), [core.Iterable$(K), core.Iterable$( V)], [dart.functionType(core.int, [K, K]), dart.functionType(core.bool, [core.Ob ject])]],
3549 _internal: [SplayTreeMap$(K, V), []] 3549 _internal: [SplayTreeMap$(K, V), []]
3550 }), 3550 }),
3551 methods: () => ({ 3551 methods: () => ({
3552 [_compare]: [core.int, [K, K]], 3552 [_compare]: [core.int, [K, K]],
3553 get: [V, [core.Object]], 3553 get: [V, [core.Object]],
3554 remove: [V, [core.Object]], 3554 remove: [V, [core.Object]],
3555 set: [dart.void, [K, V]], 3555 set: [dart.void, [K, V]],
3556 putIfAbsent: [V, [K, dart.functionType(V, [])]], 3556 putIfAbsent: [V, [K, dart.functionType(V, [])]],
3557 addAll: [dart.void, [core.Map$(K, V)]], 3557 addAll: [dart.void, [core.Map$(K, V)]],
(...skipping 2255 matching lines...) Expand 10 before | Expand all | Expand 10 after
5813 exports.LinkedHashMapKeyIterable$ = LinkedHashMapKeyIterable$; 5813 exports.LinkedHashMapKeyIterable$ = LinkedHashMapKeyIterable$;
5814 exports.LinkedHashMapKeyIterable = LinkedHashMapKeyIterable; 5814 exports.LinkedHashMapKeyIterable = LinkedHashMapKeyIterable;
5815 exports.LinkedHashMapKeyIterator$ = LinkedHashMapKeyIterator$; 5815 exports.LinkedHashMapKeyIterator$ = LinkedHashMapKeyIterator$;
5816 exports.LinkedHashMapKeyIterator = LinkedHashMapKeyIterator; 5816 exports.LinkedHashMapKeyIterator = LinkedHashMapKeyIterator;
5817 exports.HashSetIterator$ = HashSetIterator$; 5817 exports.HashSetIterator$ = HashSetIterator$;
5818 exports.HashSetIterator = HashSetIterator; 5818 exports.HashSetIterator = HashSetIterator;
5819 exports.LinkedHashSetCell = LinkedHashSetCell; 5819 exports.LinkedHashSetCell = LinkedHashSetCell;
5820 exports.LinkedHashSetIterator$ = LinkedHashSetIterator$; 5820 exports.LinkedHashSetIterator$ = LinkedHashSetIterator$;
5821 exports.LinkedHashSetIterator = LinkedHashSetIterator; 5821 exports.LinkedHashSetIterator = LinkedHashSetIterator;
5822 })(collection, _internal, core, _js_helper, math); 5822 })(collection, _internal, core, _js_helper, math);
OLDNEW
« no previous file with comments | « lib/runtime/dart/async.js ('k') | lib/runtime/dart/convert.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698