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

Side by Side Diff: sdk/lib/io/io.dart

Issue 2974073002: Revert "Don't use `LinkedList` in the core libraries anymore." (Closed)
Patch Set: Created 3 years, 5 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 | « sdk/lib/internal/linked_list.dart ('k') | tests/corelib/reg_exp_cache_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * File, socket, HTTP, and other I/O support for server applications. 6 * File, socket, HTTP, and other I/O support for server applications.
7 * 7 *
8 * The I/O library is used for Dart server applications, 8 * The I/O library is used for Dart server applications,
9 * which run on a stand-alone Dart VM from the command line. 9 * which run on a stand-alone Dart VM from the command line.
10 * *This library does not work in browser-based applications.* 10 * *This library does not work in browser-based applications.*
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 * tour](https://www.dartlang.org/docs/dart-up-and-running/ch03.html#dartio---io -for-command-line-apps). 190 * tour](https://www.dartlang.org/docs/dart-up-and-running/ch03.html#dartio---io -for-command-line-apps).
191 * 191 *
192 * To learn more about I/O in Dart, refer to the [tutorial about writing 192 * To learn more about I/O in Dart, refer to the [tutorial about writing
193 * command-line apps](https://www.dartlang.org/docs/tutorials/cmdline/). 193 * command-line apps](https://www.dartlang.org/docs/tutorials/cmdline/).
194 */ 194 */
195 library dart.io; 195 library dart.io;
196 196
197 import 'dart:async'; 197 import 'dart:async';
198 import 'dart:_internal' hide Symbol; 198 import 'dart:_internal' hide Symbol;
199 import 'dart:collection' 199 import 'dart:collection'
200 show HashMap, HashSet, Queue, ListQueue, UnmodifiableMapView; 200 show
201 HashMap,
202 HashSet,
203 Queue,
204 ListQueue,
205 LinkedList,
206 LinkedListEntry,
207 UnmodifiableMapView;
201 import 'dart:convert'; 208 import 'dart:convert';
202 import 'dart:developer' hide log; 209 import 'dart:developer' hide log;
203 import 'dart:isolate'; 210 import 'dart:isolate';
204 import 'dart:math'; 211 import 'dart:math';
205 import 'dart:typed_data'; 212 import 'dart:typed_data';
206 import 'dart:nativewrappers'; 213 import 'dart:nativewrappers';
207 214
208 part 'bytes_builder.dart'; 215 part 'bytes_builder.dart';
209 part 'common.dart'; 216 part 'common.dart';
210 part 'crypto.dart'; 217 part 'crypto.dart';
(...skipping 20 matching lines...) Expand all
231 part 'secure_server_socket.dart'; 238 part 'secure_server_socket.dart';
232 part 'secure_socket.dart'; 239 part 'secure_socket.dart';
233 part 'security_context.dart'; 240 part 'security_context.dart';
234 part 'service_object.dart'; 241 part 'service_object.dart';
235 part 'socket.dart'; 242 part 'socket.dart';
236 part 'stdio.dart'; 243 part 'stdio.dart';
237 part 'string_transformer.dart'; 244 part 'string_transformer.dart';
238 part 'sync_socket.dart'; 245 part 'sync_socket.dart';
239 part 'websocket.dart'; 246 part 'websocket.dart';
240 part 'websocket_impl.dart'; 247 part 'websocket_impl.dart';
OLDNEW
« no previous file with comments | « sdk/lib/internal/linked_list.dart ('k') | tests/corelib/reg_exp_cache_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698