src/lexer.cpp

changeset 135
8b9132fea327
parent 134
eca2fc0acaa2
child 136
1c40bb4f8221
equal deleted inserted replaced
134:eca2fc0acaa2 135:8b9132fea327
61 checkFileHeader (sc); 61 checkFileHeader (sc);
62 62
63 while (sc.getNextToken()) 63 while (sc.getNextToken())
64 { 64 {
65 // Preprocessor commands: 65 // Preprocessor commands:
66 if (sc.getTokenType() ==Token::Hash) 66 if (sc.getTokenType() == Token::Hash)
67 { 67 {
68 mustGetFromScanner (sc,Token::Symbol); 68 mustGetFromScanner (sc,Token::Symbol);
69 69
70 if (sc.getTokenText() == "include") 70 if (sc.getTokenText() == "include")
71 { 71 {
254 254
255 // ============================================================================= 255 // =============================================================================
256 // 256 //
257 String Lexer::describeTokenPrivate (Token tokType, Lexer::TokenInfo* tok) 257 String Lexer::describeTokenPrivate (Token tokType, Lexer::TokenInfo* tok)
258 { 258 {
259 if (tokType <gLastNamedToken) 259 if (tokType < Token::LastNamedToken)
260 return "\"" + LexerScanner::GetTokenString (tokType) + "\""; 260 return "\"" + LexerScanner::GetTokenString (tokType) + "\"";
261 261
262 switch (tokType) 262 switch (tokType)
263 { 263 {
264 case Token::Symbol: return tok ? tok->text : "a symbol"; 264 case Token::Symbol: return tok ? tok->text : "a symbol";

mercurial