| 21 | #include "mc.xs.h" |
| 22 | |
| 23 | void xs_importNow(xsMachine *the) |
| 24 | { |
| 25 | xsTrace("importNow "); |
| 26 | xsTrace(xsToString(xsArg(0))); |
| 27 | xsTrace("\n"); |
| 28 | fxPush(xsArg(0)); |
| 29 | fxAwaitImport(the, XS_IMPORT_DEFAULT); |
| 30 | xsResult = fxPop(); |
| 31 | } |
nothing calls this directly
no test coverage detected