Index: frog/file_system_vm.dart |
diff --git a/frog/file_system_vm.dart b/frog/file_system_vm.dart |
index 29c1c59b51cdb6d3cf5f680bfca2e4f5d0b28b01..cda10790bc503cd3b27b1194f32b5e90e6b91353 100644 |
--- a/frog/file_system_vm.dart |
+++ b/frog/file_system_vm.dart |
@@ -27,4 +27,12 @@ class VMFileSystem implements FileSystem { |
bool fileExists(String filename) { |
return new File(filename).existsSync(); |
} |
+ |
+ void createDirectory(String path, [bool recursive = false]) { |
+ throw 'createDirectory() is not implemented by VMFileSystem yet.'; |
Jacob
2011/11/16 19:59:30
same comment as other file
Bob Nystrom
2011/11/17 20:44:21
Done.
|
+ } |
+ |
+ void removeDirectory(String path, [bool recursive = false]) { |
+ throw 'removeDirectory() is not implemented by VMFileSystem yet.'; |
+ } |
} |