| 848 | } |
| 849 | |
| 850 | void fxLookAheadOnce(txParser* parser) |
| 851 | { |
| 852 | if (parser->ahead == 0) { |
| 853 | fxGetNextTokenAux(parser); |
| 854 | parser->states[1] = parser->states[2]; |
| 855 | parser->ahead = 1; |
| 856 | } |
| 857 | } |
| 858 | |
| 859 | void fxLookAheadTwice(txParser* parser) |
| 860 | { |
no test coverage detected