* Initializes the file system. Typically called by subclasses' async * constructors.
(store: AsyncKeyValueStore, cb: BFSOneArgCallback)
| 726 | * constructors. |
| 727 | */ |
| 728 | public init(store: AsyncKeyValueStore, cb: BFSOneArgCallback) { |
| 729 | this.store = store; |
| 730 | // INVARIANT: Ensure that the root exists. |
| 731 | this.makeRootDirectory(cb); |
| 732 | } |
| 733 | public getName(): string { return this.store.name(); } |
| 734 | public isReadOnly(): boolean { return false; } |
| 735 | public supportsSymlinks(): boolean { return false; } |
no test coverage detected