| 1186 | } |
| 1187 | |
| 1188 | void PiuCode_hitOffset(xsMachine *the) |
| 1189 | { |
| 1190 | PiuCode* self = PIU(Code, xsThis); |
| 1191 | if ((*self)->application) { |
| 1192 | PiuCoordinate x = xsToPiuCoordinate(xsArg(0)); |
| 1193 | PiuCoordinate y = xsToPiuCoordinate(xsArg(1)); |
| 1194 | xsResult = xsInteger(PiuCodeHitOffset(self, x, y)); |
| 1195 | } |
| 1196 | } |
| 1197 | |
| 1198 | void PiuCode_isSpace(xsMachine *the) |
| 1199 | { |
nothing calls this directly
no test coverage detected