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

Side by Side Diff: sdk/lib/_internal/pub/lib/src/utils.dart

Issue 15820008: Remove library dart:crypto (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 7 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 | « sdk/lib/_internal/libraries.dart ('k') | sdk/lib/crypto/crypto.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 /// Generic utility functions. Stuff that should possibly be in core. 5 /// Generic utility functions. Stuff that should possibly be in core.
6 library utils; 6 library utils;
7 7
8 import 'dart:async'; 8 import 'dart:async';
9 import 'dart:crypto';
10 import 'dart:io'; 9 import 'dart:io';
11 import 'dart:isolate'; 10 import 'dart:isolate';
12 import 'dart:json' as json; 11 import 'dart:json' as json;
13 import 'dart:mirrors'; 12 import 'dart:mirrors';
14 13
14 import "package:crypto/crypto.dart";
15 import 'package:pathos/path.dart' as path; 15 import 'package:pathos/path.dart' as path;
16 16
17 /// A pair of values. 17 /// A pair of values.
18 class Pair<E, F> { 18 class Pair<E, F> {
19 E first; 19 E first;
20 F last; 20 F last;
21 21
22 Pair(this.first, this.last); 22 Pair(this.first, this.last);
23 23
24 String toString() => '($first, $last)'; 24 String toString() => '($first, $last)';
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 error is FileIOException || 538 error is FileIOException ||
539 error is HttpException || 539 error is HttpException ||
540 error is HttpParserException || 540 error is HttpParserException ||
541 error is LinkIOException || 541 error is LinkIOException ||
542 error is MimeMultipartException || 542 error is MimeMultipartException ||
543 error is OSError || 543 error is OSError ||
544 error is ProcessException || 544 error is ProcessException ||
545 error is SocketIOException || 545 error is SocketIOException ||
546 error is WebSocketException; 546 error is WebSocketException;
547 } 547 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/libraries.dart ('k') | sdk/lib/crypto/crypto.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698