| 329 | } |
| 330 | |
| 331 | void fxUnsigned(txMachine* the, txSlot* theSlot, txUnsigned theValue) |
| 332 | { |
| 333 | if (((txInteger)theValue) >= 0) { |
| 334 | theSlot->value.integer = theValue; |
| 335 | theSlot->kind = XS_INTEGER_KIND; |
| 336 | } |
| 337 | else { |
| 338 | theSlot->value.number = theValue; |
| 339 | theSlot->kind = XS_NUMBER_KIND; |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | txUnsigned fxToUnsigned(txMachine* the, txSlot* theSlot) |
| 344 | { |
no outgoing calls
no test coverage detected