src/lexerScanner.cpp

changeset 136
1c40bb4f8221
parent 135
8b9132fea327
child 138
a426c1039655
equal deleted inserted replaced
135:8b9132fea327 136:1c40bb4f8221
109 "enum", 109 "enum",
110 "func", 110 "func",
111 "return", 111 "return",
112 }; 112 };
113 113
114 static_assert (countof (gTokenStrings) == (int) Token::LastNamedToken + 1, 114 static_assert (countof (gTokenStrings) == (int) 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 >= int (Token::FirstNamedToken)) 195 if (i >= int (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, Token::LastNamedToken); 293 ASSERT_LT_EQ (a, LastNamedToken);
294 return gTokenStrings[int (a)]; 294 return gTokenStrings[int (a)];
295 } 295 }
296 296
297 // ============================================================================= 297 // =============================================================================
298 // 298 //

mercurial