Chromium Code Reviews| Index: utils/apidoc/html_diff_dump.dart |
| diff --git a/utils/apidoc/html_diff_dump.dart b/utils/apidoc/html_diff_dump.dart |
| index 47f71bd7b6df3f5777bd8741693136af59b9000a..1e320d393bd25f771c9a61b8f08a2b70c8c19dfe 100644 |
| --- a/utils/apidoc/html_diff_dump.dart |
| +++ b/utils/apidoc/html_diff_dump.dart |
| @@ -26,6 +26,7 @@ |
| #library('html_diff_dump'); |
| #import('dart:json'); |
| +#import('dart:io'); |
|
Bill Hesse
2012/07/17 13:42:13
It seems a little sad that we have to go all the w
Johnni Winther
2012/07/19 08:37:07
Or maybe Path should not be in dart:io since it co
Bill Hesse
2012/07/19 13:36:19
Yes - we were discussing moving it later.
On 2012
|
| #import('html_diff.dart'); |
| #import('../../lib/dartdoc/mirrors/mirrors.dart'); |
| #import('../../lib/dartdoc/mirrors/mirrors_util.dart'); |
| @@ -90,7 +91,7 @@ void maybeAddRename(Map<String, String> renamed, |
| } |
| void main() { |
| - var libPath = '../../'; |
| + var libPath = const Path('../../'); |
| HtmlDiff.initialize(libPath); |
| diff = new HtmlDiff(); |
| diff.run(); |