From 71d3373735811cac31e9457c60e67a0147c42dbb Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Sat, 16 Mar 2024 18:24:21 +0800 Subject: [PATCH] src/Lsp.vala --- src/Lsp.vala | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) 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) -- 2.39.2