Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: third_party/pkg/angular/lib/tools/io.dart

Issue 124053002: Adding Angular and dependent packages for testing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 library angular.io;
2
3 typedef FsVisitor(String file);
4
5 /**
6 * A simple mockabe wrapper around dart:io that can be used without introducing
7 * direct dependencies on dart:io.
8 */
9 abstract class IoService {
10
11 String readAsStringSync(String filePath);
12
13 void visitFs(String rootDir, FsVisitor visitor);
14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698