| 851 | } |
| 852 | |
| 853 | xsSlot* fxDuplicateString(xsMachine* the, xsSlot* slot) |
| 854 | { |
| 855 | xsSlot* result; |
| 856 | xsOverflow(-1); |
| 857 | fxPush(*slot); |
| 858 | fxToString(the, the->stack); |
| 859 | result = fxDuplicateSlot(the, the->stack); |
| 860 | the->stack++; |
| 861 | return result; |
| 862 | } |
| 863 | |
| 864 | |
| 865 |
nothing calls this directly
no test coverage detected