src/Lsp.vala
authorAlan Knowles <alan@roojs.com>
Sat, 16 Mar 2024 09:21:30 +0000 (17:21 +0800)
committerAlan Knowles <alan@roojs.com>
Sat, 16 Mar 2024 09:21:30 +0000 (17:21 +0800)
src/Lsp.vala

index 44b0cca..f43059e 100644 (file)
@@ -351,7 +351,7 @@ namespace Lsp {
         }
         */
         public Range selectionRange { get; set; }
-        public GLib.ListStore children { get; private set; default = new GLib.ListStore(typeof(DocumentSymbol)); }
+        public GLib.ListStore children { get; private set; default = new GL//ib.ListStore(typeof(DocumentSymbol)); }
         public string? parent_name;
 
         private DocumentSymbol () {}
@@ -443,7 +443,7 @@ namespace Lsp {
         public SymbolInformation.from_document_symbol (DocumentSymbol dsym, string uri) {
             this.name = dsym.name;
             this.kind = dsym.kind;
-            this.location = new Location (uri, dsym.range);
+          //  this.location = new Location (uri, dsym.range);
             this.containerName = dsym.parent_name;
         }
     }