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

Unified Diff: frog/file_system_vm.dart

Issue 8572044: Clean and create output directory when generating docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Respond to review. Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « frog/file_system_node.dart ('k') | frog/frogsh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/file_system_vm.dart
diff --git a/frog/file_system_vm.dart b/frog/file_system_vm.dart
index 29c1c59b51cdb6d3cf5f680bfca2e4f5d0b28b01..306fcd3214f137d12e7a0eb7f350ad45f09ebb47 100644
--- a/frog/file_system_vm.dart
+++ b/frog/file_system_vm.dart
@@ -27,4 +27,14 @@ class VMFileSystem implements FileSystem {
bool fileExists(String filename) {
return new File(filename).existsSync();
}
+
+ void createDirectory(String path, [bool recursive = false]) {
+ // TODO(rnystrom): Implement.
+ throw 'createDirectory() is not implemented by VMFileSystem yet.';
+ }
+
+ void removeDirectory(String path, [bool recursive = false]) {
+ // TODO(rnystrom): Implement.
+ throw 'removeDirectory() is not implemented by VMFileSystem yet.';
+ }
}
« no previous file with comments | « frog/file_system_node.dart ('k') | frog/frogsh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698