| OLD | NEW |
| 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 Loading... |
| 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 }); |
| OLD | NEW |