| 1177 | } |
| 1178 | |
| 1179 | void PiuCode_findWordBreak(xsMachine *the) |
| 1180 | { |
| 1181 | PiuCode* self = PIU(Code, xsThis); |
| 1182 | uint32_t argc = xsToUnsigned(xsArgc); |
| 1183 | int32_t offset = xsToInteger(xsArg(0)); |
| 1184 | int32_t direction = (argc > 1) ? (xsToBoolean(xsArg(1)) ? +1 : -1) : +1; |
| 1185 | xsResult = xsInteger(PiuCodeFindWordBreak(self, offset, direction)); |
| 1186 | } |
| 1187 | |
| 1188 | void PiuCode_hitOffset(xsMachine *the) |
| 1189 | { |
nothing calls this directly
no test coverage detected