mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
LanguageServers/Cpp: Complete Preprocessor definitions
Preprocessor definitions now appear in the AutoComplete suggestions box as well as in the Locator.
This commit is contained in:
@@ -105,10 +105,14 @@ void Preprocessor::handle_preprocessor_line(const StringView& line)
|
||||
if (m_state == State::Normal) {
|
||||
auto key = lexer.consume_until(' ');
|
||||
consume_whitespace();
|
||||
|
||||
DefinedValue value;
|
||||
value.line = m_line_index;
|
||||
|
||||
auto string_value = lexer.consume_all();
|
||||
if (!string_value.is_empty())
|
||||
value.value = string_value;
|
||||
|
||||
m_definitions.set(key, value);
|
||||
}
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user