| 53 | } |
| 54 | |
| 55 | txSlot* fxNewBooleanInstance(txMachine* the) |
| 56 | { |
| 57 | txSlot* instance; |
| 58 | instance = fxNewObjectInstance(the); |
| 59 | fxNextBooleanProperty(the, instance, 0, XS_NO_ID, XS_INTERNAL_FLAG); |
| 60 | return instance; |
| 61 | } |
| 62 | |
| 63 | void fx_Boolean(txMachine* the) |
| 64 | { |
no test coverage detected