| 1824 | } |
| 1825 | |
| 1826 | void fxWithStatement(txParser* parser) |
| 1827 | { |
| 1828 | txInteger aLine = parser->states[0].line; |
| 1829 | fxMatchToken(parser, XS_TOKEN_WITH); |
| 1830 | fxMatchToken(parser, XS_TOKEN_LEFT_PARENTHESIS); |
| 1831 | fxCommaExpression(parser); |
| 1832 | fxMatchToken(parser, XS_TOKEN_RIGHT_PARENTHESIS); |
| 1833 | fxStatement(parser, 0); |
| 1834 | fxPushNodeStruct(parser, 2, XS_TOKEN_WITH, aLine); |
| 1835 | } |
| 1836 | |
| 1837 | void fxCommaExpression(txParser* parser) |
| 1838 | { |
no test coverage detected