| 1235 | } |
| 1236 | |
| 1237 | void fxStatements(txParser* parser) |
| 1238 | { |
| 1239 | txInteger count = parser->nodeCount; |
| 1240 | txInteger line = parser->states[0].line; |
| 1241 | while ((parser->states[0].token != XS_TOKEN_EOF) && (parser->states[0].token != XS_TOKEN_RIGHT_BRACE)) { |
| 1242 | fxStatement(parser, 1); |
| 1243 | } |
| 1244 | count = parser->nodeCount - count; |
| 1245 | fxPushNodeList(parser, count); |
| 1246 | fxPushNodeStruct(parser, 1, XS_TOKEN_STATEMENTS, line); |
| 1247 | } |
| 1248 | |
| 1249 | void fxStatement(txParser* parser, txInteger blockIt) |
| 1250 | { |
no test coverage detected