(Output output)
| 342 | } |
| 343 | |
| 344 | public void writeCode(Output output) { |
| 345 | // find() preamble |
| 346 | int start = output.offset; |
| 347 | output.add(SPLIT_JMP); |
| 348 | output.add(start + 5); |
| 349 | output.add(DOTALL); |
| 350 | output.add(SPLIT); |
| 351 | output.add(start + 2); |
| 352 | output.markFindPreambleEnd(); |
| 353 | group.writeCode(output); |
| 354 | } |
| 355 | |
| 356 | public String toString() { |
| 357 | String inner = group.toString(); |
nothing calls this directly
no test coverage detected