src/lexerScanner.cpp

changeset 135
8b9132fea327
parent 134
eca2fc0acaa2
child 136
1c40bb4f8221
equal deleted inserted replaced
134:eca2fc0acaa2 135:8b9132fea327
46 "%=", 46 "%=",
47 "<<", 47 "<<",
48 ">>", 48 ">>",
49 ">=", 49 ">=",
50 "<=", 50 "<=",
51 "and", 51 "&&",
52 "or", 52 "||",
53 "++", 53 "++",
54 "--", 54 "--",
55 "'", 55 "'",
56 "$", 56 "$",
57 "(", 57 "(",
109 "enum", 109 "enum",
110 "func", 110 "func",
111 "return", 111 "return",
112 }; 112 };
113 113
114 static_assert (countof (gTokenStrings) == (int)gLastNamedToken + 1, 114 static_assert (countof (gTokenStrings) == (int) Token::LastNamedToken + 1,
115 "Count of gTokenStrings is not the same as the amount of named token identifiers."); 115 "Count of gTokenStrings is not the same as the amount of named token identifiers.");
116 116
117 // ============================================================================= 117 // =============================================================================
118 // 118 //
119 LexerScanner::LexerScanner (FILE* fp) : 119 LexerScanner::LexerScanner (FILE* fp) :
190 // Check tokens 190 // Check tokens
191 for (int i = 0; i < countof (gTokenStrings); ++i) 191 for (int i = 0; i < countof (gTokenStrings); ++i)
192 { 192 {
193 int flags = 0; 193 int flags = 0;
194 194
195 if (i >= gFirstNamedToken) 195 if (i >= int (Token::FirstNamedToken))
196 flags |= FCheckWord; 196 flags |= FCheckWord;
197 197
198 if (checkString (gTokenStrings[i], flags)) 198 if (checkString (gTokenStrings[i], flags))
199 { 199 {
200 m_tokenText = gTokenStrings[i]; 200 m_tokenText = gTokenStrings[i];
288 288
289 // ============================================================================= 289 // =============================================================================
290 // 290 //
291 String LexerScanner::GetTokenString (Token a) 291 String LexerScanner::GetTokenString (Token a)
292 { 292 {
293 ASSERT_LT_EQ (a, gLastNamedToken); 293 ASSERT_LT_EQ (a, Token::LastNamedToken);
294 return gTokenStrings[a]; 294 return gTokenStrings[int (a)];
295 } 295 }
296 296
297 // ============================================================================= 297 // =============================================================================
298 // 298 //
299 String LexerScanner::readLine() 299 String LexerScanner::readLine()

mercurial