From 6c8eb6876fe87553770de114ebd34649a0c6ec10 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 16 Aug 2025 15:35:02 +0300 Subject: lsp: split monolithic server.go into modules; add configurable max tokens and context strategies (minimal|window|file-on-new-func|always-full); provide flags/env fallbacks; add unit tests for helpers and context; update README; remove obsolete files --- internal/test.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 internal/test.go (limited to 'internal/test.go') diff --git a/internal/test.go b/internal/test.go deleted file mode 100644 index 586a1bc..0000000 --- a/internal/test.go +++ /dev/null @@ -1,18 +0,0 @@ -package internal - -import "os" - -func fib(i int) int { - if i <= 1 { - return i - } - return fib(i-1) + fib(i-2) -} - -func countFilesInDir(dirPath string) int { - files, err := os.ReadDir(dirPath) - if err != nil { - return 0 - } - return len(files) -} -- cgit v1.2.3