1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09:00

LibJS: Parse === and !== binary operators

This commit is contained in:
Conrad Pankoff 2020-03-12 23:11:33 +11:00 committed by Andreas Kling
parent 9d41aa4d5d
commit e88f2f15ee
Notes: sideshowbarker 2024-07-19 08:44:56 +09:00
4 changed files with 42 additions and 6 deletions

View file

@ -54,6 +54,7 @@ private:
int m_current_char;
static HashMap<String, TokenType> s_keywords;
static HashMap<String, TokenType> s_three_char_tokens;
static HashMap<String, TokenType> s_two_char_tokens;
static HashMap<char, TokenType> s_single_char_tokens;
};