()
| 324 | } |
| 325 | |
| 326 | public String toString() { |
| 327 | String inner = group.toString(); |
| 328 | if (inner.startsWith("(?:")) { |
| 329 | inner = inner.substring(3); |
| 330 | } else { |
| 331 | inner += ")"; |
| 332 | } |
| 333 | return "(?=" + inner; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | private class Group0 extends Expression { |
nothing calls this directly
no test coverage detected