1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:07:34 +00:00

LibCpp: Rename m_definitions=>m_preprocessor_definitions

This commit is contained in:
Itamar 2021-05-07 14:46:11 +03:00 committed by Andreas Kling
parent de9be7cd70
commit 5c42dc854d
3 changed files with 6 additions and 6 deletions

View file

@ -14,7 +14,7 @@
namespace Cpp {
Parser::Parser(const StringView& program, const String& filename, Preprocessor::Definitions&& definitions)
: m_definitions(move(definitions))
: m_preprocessor_definitions(move(definitions))
, m_filename(filename)
{
initialize_program_tokens(program);
@ -38,7 +38,7 @@ void Parser::initialize_program_tokens(const StringView& program)
if (token.type() == Token::Type::Whitespace)
continue;
if (token.type() == Token::Type::Identifier) {
if (auto defined_value = m_definitions.find(text_of_token(token)); defined_value != m_definitions.end()) {
if (auto defined_value = m_preprocessor_definitions.find(text_of_token(token)); defined_value != m_preprocessor_definitions.end()) {
add_tokens_for_preprocessor(token, defined_value->value);
m_replaced_preprocessor_tokens.append({ token, defined_value->value });
continue;