| 1076 | } |
| 1077 | |
| 1078 | void asCParser::Warning(const asCString &text, sToken *token) |
| 1079 | { |
| 1080 | int row, col; |
| 1081 | script->ConvertPosToRowCol(token->pos, &row, &col); |
| 1082 | |
| 1083 | if( builder ) |
| 1084 | builder->WriteWarning(script->name, text, row, col); |
| 1085 | } |
| 1086 | |
| 1087 | void asCParser::Info(const asCString &text, sToken *token) |
| 1088 | { |
nothing calls this directly
no test coverage detected