| 137 | } |
| 138 | |
| 139 | txSlot* fxNewDateInstance(txMachine* the) |
| 140 | { |
| 141 | txSlot* instance; |
| 142 | txSlot* property; |
| 143 | instance = fxNewObjectInstance(the); |
| 144 | property = fxNextNumberProperty(the, instance, 0, XS_NO_ID, XS_INTERNAL_FLAG); |
| 145 | property->kind = XS_DATE_KIND; |
| 146 | property->value.number = C_NAN; |
| 147 | return instance; |
| 148 | } |
| 149 | |
| 150 | void fx_Date(txMachine* the) |
| 151 | { |
no test coverage detected