| 396 | } |
| 397 | |
| 398 | txSlot* fxNewStringInstance(txMachine* the) |
| 399 | { |
| 400 | txSlot* instance; |
| 401 | instance = fxNewObjectInstance(the); |
| 402 | instance->flag |= XS_EXOTIC_FLAG; |
| 403 | fxNextSlotProperty(the, instance, &mxEmptyString, XS_STRING_BEHAVIOR, XS_INTERNAL_FLAG); |
| 404 | return instance; |
| 405 | } |
| 406 | |
| 407 | void fxStringAccessorGetter(txMachine* the) |
| 408 | { |
no test coverage detected