* Finds the Inode of the given path. * @param p The path to look up. * @return The Inode of the path p. * @todo memoize/cache
(tx: SyncKeyValueROTransaction, p: string)
| 480 | * @todo memoize/cache |
| 481 | */ |
| 482 | private findINode(tx: SyncKeyValueROTransaction, p: string): Inode { |
| 483 | return this.getINode(tx, p, this._findINode(tx, path.dirname(p), path.basename(p))); |
| 484 | } |
| 485 | |
| 486 | /** |
| 487 | * Given the ID of a node, retrieves the corresponding Inode. |
no test coverage detected