Fix #8120 - more experiments with hover
[roobuilder] / src / Palete / LanguageClient.vala
index 6d4cfce..3f69830 100644 (file)
@@ -74,9 +74,6 @@ namespace Palete {
                 
                
                
-               
-               
                public abstract  void initialize_server();
  
                
@@ -89,7 +86,10 @@ namespace Palete {
                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 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;     
+               public abstract async Gee.ArrayList<Lsp.SignatureInformation> signatureHelp (JsRender.JsRender file, int line, int offset) throws GLib.Error;
+               public abstract async Gee.ArrayList<Lsp.SymbolInformation> symbol (string sym) throws GLib.Error;
        }
        
 }