(String pattern)
| 89 | } |
| 90 | |
| 91 | static CommonPattern compilePattern(String pattern) { |
| 92 | Preconditions.checkNotNull(pattern); |
| 93 | return patternCompiler.compile(pattern); |
| 94 | } |
| 95 | |
| 96 | static boolean patternCompilerIsPcreLike() { |
| 97 | return patternCompiler.isPcreLike(); |
no test coverage detected