| 525 | } |
| 526 | |
| 527 | txBoolean fxIsToken(txParser* parser, txToken theToken) |
| 528 | { |
| 529 | txBoolean result = (parser->states[0].token == theToken) ? 1 : 0; |
| 530 | if (result) { |
| 531 | if (parser->states[0].escaped) |
| 532 | fxReportParserError(parser, parser->states[0].line, "escaped keyword"); |
| 533 | } |
| 534 | return result; |
| 535 | } |
| 536 | |
| 537 | void fxMatchToken(txParser* parser, txToken theToken) |
| 538 | { |
no test coverage detected