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

Side by Side Diff: test/codegen/expect/collection/wrappers.js

Issue 1486753003: Regen DDC files (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years 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 | « test/codegen/expect/collection/priority_queue.js ('k') | test/codegen/expect/map_keys.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 dart_library.library('collection/wrappers', null, /* Imports */[ 1 dart_library.library('collection/wrappers', null, /* Imports */[
2 "dart/_runtime", 2 "dart/_runtime",
3 'collection/src/canonicalized_map', 3 'collection/src/canonicalized_map',
4 'dart/core', 4 'dart/core',
5 'dart/math', 5 'dart/math',
6 'dart/collection' 6 'dart/collection'
7 ], /* Lazy imports */[ 7 ], /* Lazy imports */[
8 'collection/src/unmodifiable_wrappers' 8 'collection/src/unmodifiable_wrappers'
9 ], function(exports, dart, canonicalized_map, core, math, collection, unmodifiab le_wrappers) { 9 ], function(exports, dart, canonicalized_map, core, math, collection, unmodifiab le_wrappers) {
10 'use strict'; 10 'use strict';
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 toString() { 693 toString() {
694 return dart.toString(this.toSet()); 694 return dart.toString(this.toSet());
695 } 695 }
696 add(value) { 696 add(value) {
697 dart.as(value, V); 697 dart.as(value, V);
698 let key = dart.as(dart.dcall(this[_keyForValue], value), K); 698 let key = dart.as(dart.dcall(this[_keyForValue], value), K);
699 let result = false; 699 let result = false;
700 this[_baseMap].putIfAbsent(key, dart.as(dart.fn(() => { 700 this[_baseMap].putIfAbsent(key, dart.as(dart.fn(() => {
701 result = true; 701 result = true;
702 return value; 702 return value;
703 }), __CastType0)); 703 }), __CastType0$(V)));
704 return result; 704 return result;
705 } 705 }
706 addAll(elements) { 706 addAll(elements) {
707 dart.as(elements, core.Iterable$(V)); 707 dart.as(elements, core.Iterable$(V));
708 return elements[dartx.forEach](dart.bind(this, 'add')); 708 return elements[dartx.forEach](dart.bind(this, 'add'));
709 } 709 }
710 clear() { 710 clear() {
711 return this[_baseMap].clear(); 711 return this[_baseMap].clear();
712 } 712 }
713 containsAll(other) { 713 containsAll(other) {
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 exports.DelegatingSet$ = DelegatingSet$; 816 exports.DelegatingSet$ = DelegatingSet$;
817 exports.DelegatingSet = DelegatingSet; 817 exports.DelegatingSet = DelegatingSet;
818 exports.DelegatingQueue$ = DelegatingQueue$; 818 exports.DelegatingQueue$ = DelegatingQueue$;
819 exports.DelegatingQueue = DelegatingQueue; 819 exports.DelegatingQueue = DelegatingQueue;
820 exports.DelegatingMap$ = DelegatingMap$; 820 exports.DelegatingMap$ = DelegatingMap$;
821 exports.DelegatingMap = DelegatingMap; 821 exports.DelegatingMap = DelegatingMap;
822 exports.MapKeySet$ = MapKeySet$; 822 exports.MapKeySet$ = MapKeySet$;
823 exports.MapValueSet$ = MapValueSet$; 823 exports.MapValueSet$ = MapValueSet$;
824 exports.MapValueSet = MapValueSet; 824 exports.MapValueSet = MapValueSet;
825 }); 825 });
OLDNEW
« no previous file with comments | « test/codegen/expect/collection/priority_queue.js ('k') | test/codegen/expect/map_keys.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698