(Output output)
| 312 | } |
| 313 | |
| 314 | @Override |
| 315 | protected void writeCode(Output output) { |
| 316 | PikeVM vm = new Output(group).toVM(); |
| 317 | if (!forward) { |
| 318 | vm.reverse(); |
| 319 | } |
| 320 | output.add(forward ? |
| 321 | (negative ? NEGATIVE_LOOKAHEAD : LOOKAHEAD) : |
| 322 | (negative ? NEGATIVE_LOOKAHEAD : LOOKBEHIND)); |
| 323 | output.add(output.addLookaround(vm)); |
| 324 | } |
| 325 | |
| 326 | public String toString() { |
| 327 | String inner = group.toString(); |
nothing calls this directly
no test coverage detected