| 1078 | } |
| 1079 | |
| 1080 | void PiuDebugMachineParseDataEnd(PiuDebugMachine self) |
| 1081 | { |
| 1082 | xsMachine* the = self->the; |
| 1083 | if (self->logging) { |
| 1084 | xsResult = xsGet(self->listSlot, xsID_data); |
| 1085 | fxConcatStringC(the, mxResult, self->data); |
| 1086 | PiuDebugMachineParseString(self, xsToString(xsResult)); |
| 1087 | xsSet(self->listSlot, xsID_data, xsResult); |
| 1088 | } |
| 1089 | } |
| 1090 | |
| 1091 | void PiuDebugMachineParseProcessingInstruction(PiuDebugMachine self, char* p) |
| 1092 | { |
no test coverage detected