(projectPath: string)
| 25 | } |
| 26 | |
| 27 | export function buildProjectFullContextResourceUri(projectPath: string): string { |
| 28 | return `${FULL_PROJECT_CONTEXT_RESOURCE_PREFIX}${encodeURIComponent(projectPath)}`; |
| 29 | } |
| 30 | |
| 31 | export function getProjectPathFromContextResourceUri(uri: string): string | undefined { |
| 32 | const normalized = normalizeResourceUri(uri); |
no outgoing calls
no test coverage detected