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

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

Issue 257423008: Update all Angular libs (run update_all.sh). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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
1 library angular.io; 1 library angular.io;
2 2
3 typedef FsVisitor(String file); 3 typedef FsVisitor(String file);
4 4
5 /** 5 /**
6 * A simple mockabe wrapper around dart:io that can be used without introducing 6 * A simple mockable wrapper around dart:io that can be used without introducing
7 * direct dependencies on dart:io. 7 * direct dependencies on dart:io.
8 */ 8 */
9 abstract class IoService { 9 abstract class IoService {
10 10
11 String readAsStringSync(String filePath); 11 String readAsStringSync(String filePath);
12 12
13 void visitFs(String rootDir, FsVisitor visitor); 13 void visitFs(String rootDir, FsVisitor visitor);
14 } 14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698