refactor: hide topology context helpers

This commit is contained in:
Peter Steinberger
2026-05-02 08:53:00 +01:00
parent 65fc962d7b
commit 566cef02fd

View File

@@ -9,7 +9,7 @@ function assert(condition: unknown, message: string): asserts condition {
}
}
export function normalizePath(filePath: string): string {
function normalizePath(filePath: string): string {
return filePath.split(path.sep).join(path.posix.sep);
}
@@ -41,7 +41,7 @@ export function createProgramContext(
};
}
export function comparableSymbol(
function comparableSymbol(
checker: ts.TypeChecker,
symbol: ts.Symbol | undefined,
): ts.Symbol | undefined {