LanguageServers/Cpp: Update client asynchronously about symbols

As a document is parsed, the language server updates the client
asynchronously about symbol declarations it finds.
This commit is contained in:
Itamar 2021-02-27 09:42:57 +02:00 committed by Andreas Kling
commit a94b5376bc
Notes: sideshowbarker 2024-07-18 21:52:54 +09:00
12 changed files with 83 additions and 19 deletions

View file

@ -31,8 +31,8 @@
namespace LanguageServers::Cpp {
LexerAutoComplete::LexerAutoComplete(const FileDB& filedb)
: AutoCompleteEngine(filedb)
LexerAutoComplete::LexerAutoComplete(ClientConnection& connection, const FileDB& filedb)
: AutoCompleteEngine(connection, filedb)
{
}