| 562 | } |
| 563 | |
| 564 | void fxPushBigIntNode(txParser* parser, txBigInt* value, txInteger line) |
| 565 | { |
| 566 | txBigIntNode* node = fxNewParserChunk(parser, sizeof(txBigIntNode)); |
| 567 | node->description = &gxTokenDescriptions[XS_TOKEN_BIGINT]; |
| 568 | node->path = parser->path; |
| 569 | node->line = line; |
| 570 | node->flags = 0; |
| 571 | node->value = *value; |
| 572 | fxPushNode(parser, (txNode*)node); |
| 573 | } |
| 574 | |
| 575 | void fxPushIndexNode(txParser* parser, txIndex value, txInteger line) |
| 576 | { |
no test coverage detected