| Index: lib/src/util/io.dart
|
| diff --git a/lib/src/util/io.dart b/lib/src/util/io.dart
|
| index 8a4a9036c766984ad7e2b1293decc6960ba3f7bd..181cb5c504b5e6c0280fb2a8b370d0e08d9141f9 100644
|
| --- a/lib/src/util/io.dart
|
| +++ b/lib/src/util/io.dart
|
| @@ -9,6 +9,10 @@ import 'dart:io';
|
|
|
| import 'package:path/path.dart' as p;
|
|
|
| +/// The root directory of the Dart SDK.
|
| +final String sdkDir = _computeSdkDir();
|
| +String _computeSdkDir() => p.dirname(p.dirname(Platform.executable));
|
| +
|
| /// Returns whether the current Dart version supports [Isolate.kill].
|
| final bool supportsIsolateKill = _supportsIsolateKill;
|
| bool get _supportsIsolateKill {
|
|
|