diff --git a/Userland/Libraries/LibJS/Lexer.cpp b/Userland/Libraries/LibJS/Lexer.cpp index 7b58a84f32..f9c0d31de7 100644 --- a/Userland/Libraries/LibJS/Lexer.cpp +++ b/Userland/Libraries/LibJS/Lexer.cpp @@ -16,7 +16,7 @@ namespace JS { -HashMap Lexer::s_keywords; +HashMap Lexer::s_keywords; HashMap Lexer::s_three_char_tokens; HashMap Lexer::s_two_char_tokens; HashMap Lexer::s_single_char_tokens; diff --git a/Userland/Libraries/LibJS/Lexer.h b/Userland/Libraries/LibJS/Lexer.h index 1ecbac223b..ee151a5753 100644 --- a/Userland/Libraries/LibJS/Lexer.h +++ b/Userland/Libraries/LibJS/Lexer.h @@ -77,7 +77,7 @@ private: bool m_allow_html_comments { true }; - static HashMap s_keywords; + static HashMap s_keywords; static HashMap s_three_char_tokens; static HashMap s_two_char_tokens; static HashMap s_single_char_tokens;