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

Side by Side Diff: test/codegen/expect/collection/src/queue_list.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/src/queue_list', null, /* Imports */[ 1 dart_library.library('collection/src/queue_list', 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 _head = Symbol('_head'); 9 let _head = Symbol('_head');
10 let _tail = Symbol('_tail'); 10 let _tail = Symbol('_tail');
11 let _table = Symbol('_table'); 11 let _table = Symbol('_table');
12 let _add = Symbol('_add'); 12 let _add = Symbol('_add');
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'length' 233 'length'
234 ]); 234 ]);
235 return QueueList; 235 return QueueList;
236 }); 236 });
237 let QueueList = QueueList$(); 237 let QueueList = QueueList$();
238 QueueList._INITIAL_CAPACITY = 8; 238 QueueList._INITIAL_CAPACITY = 8;
239 // Exports: 239 // Exports:
240 exports.QueueList$ = QueueList$; 240 exports.QueueList$ = QueueList$;
241 exports.QueueList = QueueList; 241 exports.QueueList = QueueList;
242 }); 242 });
OLDNEW
« no previous file with comments | « test/codegen/expect/collection/src/canonicalized_map.js ('k') | test/codegen/expect/collection/src/queue_list.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698