| 3931 | } |
| 3932 | |
| 3933 | void fxCheckArrowFunction(txParser* parser, txInteger count) |
| 3934 | { |
| 3935 | txNode* node = parser->root; |
| 3936 | while (count) { |
| 3937 | if (node->flags & mxArrowFlag) |
| 3938 | fxReportParserError(parser, parser->states[0].line, "invalid arrow function"); |
| 3939 | count--; |
| 3940 | node = node->next; |
| 3941 | } |
| 3942 | } |
| 3943 | |
| 3944 | static void fxReportWarning(txParser* parser, txInteger line, txString theFormat, ...) |
| 3945 | { |
no test coverage detected