| 573 | } |
| 574 | |
| 575 | void fxPushIndexNode(txParser* parser, txIndex value, txInteger line) |
| 576 | { |
| 577 | if (((txInteger)value) >= 0) |
| 578 | fxPushIntegerNode(parser, (txInteger)value, line); |
| 579 | else |
| 580 | fxPushNumberNode(parser, value, line); |
| 581 | } |
| 582 | |
| 583 | void fxPushIntegerNode(txParser* parser, txInteger value, txInteger line) |
| 584 | { |
no test coverage detected