Fix #8103 - updating of tree
[roobuilder] / src / Palete / LanguageClient.vala
index 1fcb28c..8b97ca0 100644 (file)
@@ -88,9 +88,9 @@ namespace Palete {
                public abstract void exit () throws GLib.Error;
                public abstract async void shutdown () throws GLib.Error;
                public abstract async Lsp.CompletionList?  completion(JsRender.JsRender file, int line, int offset , int triggerType = 1) throws GLib.Error;
-               public abstract async Gee.ArrayList<Lsp.DocumentSymbol> syntax (JsRender.JsRender file) throws GLib.Error;
                public abstract async Lsp.Hover hover (JsRender.JsRender file, int line, int offset) throws GLib.Error;
-               
+               public abstract void queueDocumentSymbols (JsRender.JsRender file); 
+               public abstract async Gee.ArrayList<Lsp.DocumentSymbol> documentSymbols (JsRender.JsRender file) throws GLib.Error;     
        }
        
 }