mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +00:00
HackStudio: Abstract away language-server details
This commit moves all the logic that deals with the language server (from HackStudio) into a LanguageClient class, provides some functions to make constructing them easier, and makes all language servers use a singular IPC definition. Also fixes the FIXME about making the autocompletion async. This makes adding language servers in the future significantly less duplicate-y, and significantly easier :^)
This commit is contained in:
parent
44f9637e20
commit
ac5e08a541
17 changed files with 291 additions and 118 deletions
4
DevTools/HackStudio/LanguageServers/LanguageClient.ipc
Normal file
4
DevTools/HackStudio/LanguageServers/LanguageClient.ipc
Normal file
|
@ -0,0 +1,4 @@
|
|||
endpoint LanguageClient = 8002
|
||||
{
|
||||
AutoCompleteSuggestions(Vector<String> suggestions) =|
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue