Chromium Code Reviews| Index: pkg/docgen/lib/src/io.dart |
| diff --git a/pkg/docgen/lib/src/io.dart b/pkg/docgen/lib/src/io.dart |
| index 9998687ca5ca7033812a02c732a2e3e12c1295c0..a40e79e632421d1fa0e77135d7fdf0b62ef8fe11 100644 |
| --- a/pkg/docgen/lib/src/io.dart |
| +++ b/pkg/docgen/lib/src/io.dart |
| @@ -1,5 +1,10 @@ |
| -library io; |
| +// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
|
Alan Knight
2014/03/17 17:31:57
Shouldn't these all be 2014?
kevmoo
2014/03/17 17:45:53
Done.
|
| +// for details. All rights reserved. Use of this source code is governed by a |
| +// BSD-style license that can be found in the LICENSE file. |
| + |
| /// This is a helper library to make working with io easier. |
| +library docgen.io; |
| + |
| // TODO(janicejl): listDir, canonicalize, resolveLink, and linkExists are from |
| // pub/lib/src/io.dart. If the io.dart file becomes a package, should remove |
| // copy of the functions. |
| @@ -148,4 +153,4 @@ String resolveLink(String link) { |
| /// Returns whether [link] exists on the file system. This will return `true` |
| /// for any symlink, regardless of what it points at or whether it's broken. |
| -bool linkExists(String link) => new Link(link).existsSync(); |
| +bool linkExists(String link) => new Link(link).existsSync(); |