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

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

Issue 1413683006: Move runtime js files down to lib/runtime/dart (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 1 month 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
OLDNEW
1 dart_library.library('collection/priority_queue', null, /* Imports */[ 1 dart_library.library('collection/priority_queue', null, /* Imports */[
2 "dart_runtime/dart", 2 "dart/_runtime",
3 'dart/core', 3 'dart/core',
4 'dart/collection' 4 'dart/collection'
5 ], /* Lazy imports */[ 5 ], /* Lazy imports */[
6 ], function(exports, dart, core, collection) { 6 ], function(exports, dart, core, collection) {
7 'use strict'; 7 'use strict';
8 let dartx = dart.dartx; 8 let dartx = dart.dartx;
9 let PriorityQueue$ = dart.generic(function(E) { 9 let PriorityQueue$ = dart.generic(function(E) {
10 class PriorityQueue extends core.Object {} 10 class PriorityQueue extends core.Object {}
11 return PriorityQueue; 11 return PriorityQueue;
12 }); 12 });
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 let __CastType0 = dart.typedef('__CastType0', () => dart.functionType(core.i nt, [E, E])); 241 let __CastType0 = dart.typedef('__CastType0', () => dart.functionType(core.i nt, [E, E]));
242 return __CastType0; 242 return __CastType0;
243 }); 243 });
244 let __CastType0 = __CastType0$(); 244 let __CastType0 = __CastType0$();
245 // Exports: 245 // Exports:
246 exports.PriorityQueue$ = PriorityQueue$; 246 exports.PriorityQueue$ = PriorityQueue$;
247 exports.PriorityQueue = PriorityQueue; 247 exports.PriorityQueue = PriorityQueue;
248 exports.HeapPriorityQueue$ = HeapPriorityQueue$; 248 exports.HeapPriorityQueue$ = HeapPriorityQueue$;
249 exports.HeapPriorityQueue = HeapPriorityQueue; 249 exports.HeapPriorityQueue = HeapPriorityQueue;
250 }); 250 });
OLDNEW
« no previous file with comments | « test/codegen/expect/collection/iterable_zip.js ('k') | test/codegen/expect/collection/src/canonicalized_map.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698