()
| 251 | } |
| 252 | |
| 253 | private get sectionPathWithoutRoot() { |
| 254 | // /shared-with-me/foo/bar/baz -> bar/baz |
| 255 | return joinPathSegments(splitPathSegments(this.fullPath).slice(3)); |
| 256 | } |
| 257 | |
| 258 | private async getSharedWithMeRootFolder() { |
| 259 | for await (const maybeNode of this.sdk.iterateSharedNodesWithMe()) { |
nothing calls this directly
no test coverage detected