summaryrefslogtreecommitdiff
path: root/internal/lsp/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/server.go')
-rw-r--r--internal/lsp/server.go7
1 files changed, 2 insertions, 5 deletions
diff --git a/internal/lsp/server.go b/internal/lsp/server.go
index 4b72717..2f834ba 100644
--- a/internal/lsp/server.go
+++ b/internal/lsp/server.go
@@ -44,11 +44,8 @@ type Server struct {
// Minimum identifier chars required for manual invoke to bypass prefix checks
manualInvokeMinPrefix int
- // LLM concurrency guard: allow at most one in-flight request
- llmBusy bool
-
- // Dispatch table for JSON-RPC methods → handler functions
- handlers map[string]func(Request)
+ // Dispatch table for JSON-RPC methods → handler functions
+ handlers map[string]func(Request)
}
// ServerOptions collects configuration for NewServer to avoid long parameter lists.