(String pattern)
| 34 | public abstract String toString(); |
| 35 | |
| 36 | public static CommonPattern compile(String pattern) { |
| 37 | return Platform.compilePattern(pattern); |
| 38 | } |
| 39 | |
| 40 | public static boolean isPcreLike() { |
| 41 | return Platform.patternCompilerIsPcreLike(); |
nothing calls this directly
no test coverage detected