| 1266 | } |
| 1267 | |
| 1268 | void PiuText_endBlock(xsMachine *the) |
| 1269 | { |
| 1270 | PiuText* self = PIU(Text, xsThis); |
| 1271 | if ((*self)->nodeOffset == -1) |
| 1272 | xsUnknownError("no block"); |
| 1273 | PiuTextEndNode(self, piuTextNodeEndBlockKind); |
| 1274 | if ((*self)->nodeOffset != -1) |
| 1275 | xsUnknownError("block inside block"); |
| 1276 | } |
| 1277 | |
| 1278 | void PiuText_endSpan(xsMachine *the) |
| 1279 | { |
nothing calls this directly
no test coverage detected