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

Side by Side Diff: lib/src/util/dart.dart

Issue 955543002: Move a bunch of src/ files into subdirectories. (Closed) Base URL: git@github.com:dart-lang/unittest@master
Patch Set: Fix library tags Created 5 years, 10 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 | « lib/src/throws_matchers.dart ('k') | lib/src/util/exit_codes.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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 library unittest.dart; 5 library unittest.util.dart;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:io'; 8 import 'dart:io';
9 import 'dart:isolate'; 9 import 'dart:isolate';
10 10
11 import 'package:path/path.dart' as p; 11 import 'package:path/path.dart' as p;
12 12
13 import 'isolate_wrapper.dart'; 13 import 'isolate_wrapper.dart';
14 import 'remote_exception.dart'; 14 import 'remote_exception.dart';
15 15
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 Isolate.spawnUri(Uri.parse(message['uri']), [], message['message'], 62 Isolate.spawnUri(Uri.parse(message['uri']), [], message['message'],
63 packageRoot: packageRoot) 63 packageRoot: packageRoot)
64 .then((_) => replyTo.send({'type': 'success'})) 64 .then((_) => replyTo.send({'type': 'success'}))
65 .catchError((error, stackTrace) { 65 .catchError((error, stackTrace) {
66 replyTo.send({ 66 replyTo.send({
67 'type': 'error', 67 'type': 'error',
68 'error': RemoteException.serialize(error, stackTrace) 68 'error': RemoteException.serialize(error, stackTrace)
69 }); 69 });
70 }); 70 });
71 } 71 }
OLDNEW
« no previous file with comments | « lib/src/throws_matchers.dart ('k') | lib/src/util/exit_codes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698