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

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

Issue 325533002: Fixed toString of Platform.environment on Windows (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/io/platform_impl.dart » ('j') | sdk/lib/io/platform_impl.dart » ('J')
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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 library dart.io; 197 library dart.io;
198 198
199 import 'dart:async'; 199 import 'dart:async';
200 import 'dart:_internal'; 200 import 'dart:_internal';
201 import 'dart:collection' show HashMap, 201 import 'dart:collection' show HashMap,
202 HashSet, 202 HashSet,
203 Queue, 203 Queue,
204 ListQueue, 204 ListQueue,
205 LinkedList, 205 LinkedList,
206 LinkedListEntry, 206 LinkedListEntry,
207 MapMixin,
207 UnmodifiableMapView; 208 UnmodifiableMapView;
208 import 'dart:convert'; 209 import 'dart:convert';
209 import 'dart:isolate'; 210 import 'dart:isolate';
210 import 'dart:math'; 211 import 'dart:math';
211 import 'dart:typed_data'; 212 import 'dart:typed_data';
212 213
213 part 'bytes_builder.dart'; 214 part 'bytes_builder.dart';
214 part 'common.dart'; 215 part 'common.dart';
215 part 'crypto.dart'; 216 part 'crypto.dart';
216 part 'data_transformer.dart'; 217 part 'data_transformer.dart';
(...skipping 17 matching lines...) Expand all
234 part 'process.dart'; 235 part 'process.dart';
235 part 'service_object.dart'; 236 part 'service_object.dart';
236 part 'socket.dart'; 237 part 'socket.dart';
237 part 'stdio.dart'; 238 part 'stdio.dart';
238 part 'string_transformer.dart'; 239 part 'string_transformer.dart';
239 part 'timer_impl.dart'; 240 part 'timer_impl.dart';
240 part 'secure_socket.dart'; 241 part 'secure_socket.dart';
241 part 'secure_server_socket.dart'; 242 part 'secure_server_socket.dart';
242 part 'websocket.dart'; 243 part 'websocket.dart';
243 part 'websocket_impl.dart'; 244 part 'websocket_impl.dart';
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/io/platform_impl.dart » ('j') | sdk/lib/io/platform_impl.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698