Index: frog/file_system_memory.dart |
diff --git a/frog/file_system_memory.dart b/frog/file_system_memory.dart |
index 4373f38900ef5b4b603f8b902f3c3305e376157a..fbe1d826aca4b62b380eb62487f4abb20d464338 100644 |
--- a/frog/file_system_memory.dart |
+++ b/frog/file_system_memory.dart |
@@ -25,4 +25,7 @@ class MemoryFileSystem implements FileSystem { |
bool fileExists(String filename) { |
return true; |
} |
+ |
+ void createDirectory(String path, [bool recursive]) { } |
+ void removeDirectory(String path, [bool recursive]) { } |
} |