From ced915fedc99eeffbf4c5b1df68895c1514de412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20T=C3=A1mara?= Date: Sun, 16 Nov 2025 19:04:32 -0500 Subject: [PATCH] refactor: Removed unused lsp symbol struct --- src/Project.zig | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Project.zig b/src/Project.zig index e47ac48..dd401fb 100644 --- a/src/Project.zig +++ b/src/Project.zig @@ -1867,15 +1867,6 @@ const DocumentSymbol = struct { parent_name: []const u8 = &.{}, }; -const SymbolInformation = struct { - name: []const u8, - kind: usize, - tags: ?[]const usize, - deprecated: ?bool, - location: Location, - containerName: ?[]const u8, -}; - // Location is a subset of LocationLink const Location = LocationLink;