| 1214 | } |
| 1215 | |
| 1216 | void PiuText_set_string(xsMachine *the) |
| 1217 | { |
| 1218 | PiuText* self = PIU(Text, xsThis); |
| 1219 | PiuTextBegin(self); |
| 1220 | PiuTextBeginNode(self, piuTextNodeBeginBlockKind, NULL, NULL); |
| 1221 | PiuTextConcat(self, PiuString(xsArg(0))); |
| 1222 | PiuTextEndNode(self, piuTextNodeEndBlockKind); |
| 1223 | PiuTextEnd(self); |
| 1224 | } |
| 1225 | |
| 1226 | void PiuText_begin(xsMachine *the) |
| 1227 | { |
nothing calls this directly
no test coverage detected