(name: string)
| 236 | } |
| 237 | |
| 238 | async getChild(name: string) { |
| 239 | const node = await this.getNode(); |
| 240 | return this.getNodeByName(node, name); |
| 241 | } |
| 242 | |
| 243 | private get sectionPath() { |
| 244 | // /my-files/foo/bar/baz -> foo/bar/baz |
nothing calls this directly
no test coverage detected