Index: sdk/lib/_internal/dartdoc/lib/dartdoc.dart |
diff --git a/sdk/lib/_internal/dartdoc/lib/dartdoc.dart b/sdk/lib/_internal/dartdoc/lib/dartdoc.dart |
index 3b4fe10080dbbaaa8dc09952dbc6d4a84b5c190d..3d3f3c84724b1807e19caf1e6152790d83186000 100644 |
--- a/sdk/lib/_internal/dartdoc/lib/dartdoc.dart |
+++ b/sdk/lib/_internal/dartdoc/lib/dartdoc.dart |
@@ -70,7 +70,7 @@ const API_LOCATION = 'http://api.dartlang.org/'; |
*/ |
// TODO(johnniwinther): Convert to final (lazily initialized) variables when |
// the feature is supported. |
-String get scriptDir => path.dirname(Platform.script.toFilePath()); |
+String get scriptDir => path.dirname(Platform.script); |
/** |
* Deletes and recreates the output directory at [path] if it exists. |
@@ -776,7 +776,7 @@ class Dartdoc { |
/// Whether dartdoc is running from within the Dart SDK or the |
/// Dart source repository. |
bool get runningFromSdk => |
- path.extension(Platform.script.toFilePath()) == '.snapshot'; |
+ path.extension(Platform.script) == '.snapshot'; |
/// Gets the path to the root directory of the SDK. |
String get sdkDir => |