142 bool LexerScanner::checkString (const char* c, int flags) |
142 bool LexerScanner::checkString (const char* c, int flags) |
143 { |
143 { |
144 bool r = strncmp (m_position, c, strlen (c)) == 0; |
144 bool r = strncmp (m_position, c, strlen (c)) == 0; |
145 |
145 |
146 // There is to be a non-symbol character after words |
146 // There is to be a non-symbol character after words |
147 if (r && (flags & FCheckWord) && isSymbolChar (m_position[strlen (c)], true)) |
147 if (r and (flags & FCheckWord) and IsSymbolCharacter (m_position[strlen (c)], true)) |
148 r = false; |
148 r = false; |
149 |
149 |
150 // Advance the cursor unless we want to just peek |
150 // Advance the cursor unless we want to just peek |
151 if (r && !(flags & FCheckPeek)) |
151 if (r and !(flags & FCheckPeek)) |
152 m_position += strlen (c); |
152 m_position += strlen (c); |
153 |
153 |
154 return r; |
154 return r; |
155 } |
155 } |
156 |
156 |
230 } |
230 } |
231 |
231 |
232 m_tokenText += *m_position++; |
232 m_tokenText += *m_position++; |
233 } |
233 } |
234 |
234 |
235 m_tokenType =TK_String; |
235 m_tokenType =Token::String; |
236 skip(); // skip the final quote |
236 skip(); // skip the final quote |
237 return true; |
237 return true; |
238 } |
238 } |
239 |
239 |
240 if (isdigit (*m_position)) |
240 if (isdigit (*m_position)) |
241 { |
241 { |
242 while (isdigit (*m_position)) |
242 while (isdigit (*m_position)) |
243 m_tokenText += *m_position++; |
243 m_tokenText += *m_position++; |
244 |
244 |
245 m_tokenType =TK_Number; |
245 m_tokenType =Token::Number; |
246 return true; |
246 return true; |
247 } |
247 } |
248 |
248 |
249 if (isSymbolChar (*m_position, false)) |
249 if (IsSymbolCharacter (*m_position, false)) |
250 { |
250 { |
251 m_tokenType =TK_Symbol; |
251 m_tokenType =Token::Symbol; |
252 |
252 |
253 do |
253 do |
254 { |
254 { |
255 if (!isSymbolChar (*m_position, true)) |
255 if (!IsSymbolCharacter (*m_position, true)) |
256 break; |
256 break; |
257 |
257 |
258 m_tokenText += *m_position++; |
258 m_tokenText += *m_position++; |
259 } while (*m_position != '\0'); |
259 } while (*m_position != '\0'); |
260 |
260 |