| 1698 | } |
| 1699 | |
| 1700 | void PiuDebugSerialParse(xsMachine* the) |
| 1701 | { |
| 1702 | PiuDebugMachine self = xsGetHostData(xsThis); |
| 1703 | char* string = xsToArrayBuffer(xsArg(0)); |
| 1704 | int length = xsGetArrayBufferLength(xsArg(0)); |
| 1705 | xsVars(4); |
| 1706 | // fprintf(stderr, "%.*s\n", length, string); |
| 1707 | PiuDebugMachineParse(self, string, length); |
| 1708 | } |
nothing calls this directly
no test coverage detected