| 3942 | } |
| 3943 | |
| 3944 | static void fxReportWarning(txParser* parser, txInteger line, txString theFormat, ...) |
| 3945 | { |
| 3946 | c_va_list arguments; |
| 3947 | c_va_start(arguments, theFormat); |
| 3948 | (*parser->reportWarning)(parser->console, parser->path ? parser->path->string : C_NULL, line, theFormat, arguments); |
| 3949 | c_va_end(arguments); |
| 3950 | } |
| 3951 | |
| 3952 | void fxCheckNativeConstructor(txParser* parser) |
| 3953 | { |
no outgoing calls
no test coverage detected