109 void error (const String& msg) |
109 void error (const String& msg) |
110 { |
110 { |
111 Lexer* lx = Lexer::getCurrentLexer(); |
111 Lexer* lx = Lexer::getCurrentLexer(); |
112 String fileinfo; |
112 String fileinfo; |
113 |
113 |
114 if (lx != null && lx->hasValidToken()) |
114 if (lx != null and lx->hasValidToken()) |
115 { |
115 { |
116 Lexer::TokenInfo* tk = lx->token(); |
116 Lexer::TokenInfo* tk = lx->token(); |
117 fileinfo = format ("%1:%2:%3: ", tk->file, tk->line, tk->column); |
117 fileinfo = format ("%1:%2:%3: ", tk->file, tk->line, tk->column); |
118 } |
118 } |
119 |
119 |