| Index: runtime/bin/builtin.dart
|
| diff --git a/runtime/bin/builtin.dart b/runtime/bin/builtin.dart
|
| index 6aec39a3966dd2a8e6b9679b04b21a2287f98bca..65b7aa854a1010b9432a26e14d2f2173a79712e4 100644
|
| --- a/runtime/bin/builtin.dart
|
| +++ b/runtime/bin/builtin.dart
|
| @@ -30,20 +30,6 @@ void _print(arg) {
|
|
|
| _getPrintClosure() => _print;
|
|
|
| -// Corelib 'Uri.base' implementation.
|
| -// Uri.base is susceptible to changes in the current working directory.
|
| -_getCurrentDirectoryPath() native "Builtin_GetCurrentDirectory";
|
| -
|
| -Uri _uriBase() {
|
| - // We are not using Dircetory.current here to limit the dependency
|
| - // on dart:io. This code is the same as:
|
| - // return new Uri.directory(Directory.current.path);
|
| - var path = _getCurrentDirectoryPath();
|
| - return new Uri.directory(path);
|
| -}
|
| -
|
| -_getUriBaseClosure() => _uriBase;
|
| -
|
| // Asynchronous loading of resources.
|
| // The embedder forwards loading requests to the service isolate.
|
|
|
|
|