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

index 815438b..4ba98da 100644 (file)
@@ -335,18 +335,18 @@ namespace Lsp {
     }
 
     public class DocumentSymbol : Object, Json.Serializable {
-        private Vala.SourceReference? _source_reference;
-        public string name { get; set; }
-        public string? detail { get; set; }
-        public SymbolKind kind { get; set; }
-        public bool deprecated { get; set; }
-
-       public Range range { get; set; } 
-        public Range selectionRange { get; set; }
-        public GLib.ListStore children { get; private set; default = new GLib.ListStore(typeof(DocumentSymbol)); }
-        public string? parent_name;
-
-        private DocumentSymbol () {}
+               private Vala.SourceReference? _source_reference;
+               public string name { get; set; }
+               public string? detail { get; set; }
+               public SymbolKind kind { get; set; }
+               public bool deprecated { get; set; }
+
+               public Range range { get; set; } 
+               public Range selectionRange { get; set; }
+               public GLib.ListStore children { get; private set; default = new GLib.ListStore(typeof(DocumentSymbol)); }
+               public string? parent_name;
+
+               private DocumentSymbol () {}
 
         /**
          * @param type the data type containing this symbol, if there was one (not available for Namespaces, for example)