| Index: third_party/pkg/angular/lib/tools/io.dart
|
| diff --git a/third_party/pkg/angular/lib/tools/io.dart b/third_party/pkg/angular/lib/tools/io.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e6d7de8c40e99b27e31fe071c40fb3c19b5cea44
|
| --- /dev/null
|
| +++ b/third_party/pkg/angular/lib/tools/io.dart
|
| @@ -0,0 +1,14 @@
|
| +library angular.io;
|
| +
|
| +typedef FsVisitor(String file);
|
| +
|
| +/**
|
| + * A simple mockabe wrapper around dart:io that can be used without introducing
|
| + * direct dependencies on dart:io.
|
| + */
|
| +abstract class IoService {
|
| +
|
| + String readAsStringSync(String filePath);
|
| +
|
| + void visitFs(String rootDir, FsVisitor visitor);
|
| +}
|
|
|