From: Alan Knowles Date: Sat, 16 Mar 2024 10:24:21 +0000 (+0800) Subject: src/Lsp.vala X-Git-Url: http://git.roojs.org/?a=commitdiff_plain;h=71d3373735811cac31e9457c60e67a0147c42dbb;p=roobuilder src/Lsp.vala --- diff --git a/src/Lsp.vala b/src/Lsp.vala index 815438b98..4ba98da30 100644 --- a/src/Lsp.vala +++ b/src/Lsp.vala @@ -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)