CppLanguageServer: Only re-create DocumentData in file_opened if needed

This commit is contained in:
Itamar 2021-05-14 12:35:52 +03:00 committed by Andreas Kling
parent 84e41c4565
commit 9408013177
Notes: sideshowbarker 2024-07-18 18:04:57 +09:00

View File

@ -328,7 +328,7 @@ void ParserAutoComplete::on_edit(const String& file)
void ParserAutoComplete::file_opened([[maybe_unused]] const String& file)
{
set_document_data(file, create_document_data_for(file));
get_or_create_document_data(file);
}
Optional<GUI::AutocompleteProvider::ProjectLocation> ParserAutoComplete::find_declaration_of(const String& filename, const GUI::TextPosition& identifier_position)