| 6288 | } |
| 6289 | |
| 6290 | void asCCompiler::Warning(const asCString &msg, asCScriptNode *node) |
| 6291 | { |
| 6292 | asCString str; |
| 6293 | |
| 6294 | int r = 0, c = 0; |
| 6295 | asASSERT( node ); |
| 6296 | if( node ) script->ConvertPosToRowCol(node->tokenPos, &r, &c); |
| 6297 | |
| 6298 | builder->WriteWarning(script->name, msg, r, c); |
| 6299 | } |
| 6300 | |
| 6301 | void asCCompiler::Information(const asCString &msg, asCScriptNode *node) |
| 6302 | { |
nothing calls this directly
no test coverage detected