From 566cef02fd72e70ed373c03d0f36c6ca238177db Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 2 May 2026 08:53:00 +0100 Subject: [PATCH] refactor: hide topology context helpers --- scripts/lib/ts-topology/context.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/ts-topology/context.ts b/scripts/lib/ts-topology/context.ts index 4f2e865921a..c74a8535bac 100644 --- a/scripts/lib/ts-topology/context.ts +++ b/scripts/lib/ts-topology/context.ts @@ -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 {