(String description)
| 23 | private boolean inversePattern; |
| 24 | |
| 25 | public static CharacterMatcher parse(String description) { |
| 26 | return parse(description.toCharArray()); |
| 27 | } |
| 28 | |
| 29 | public static CharacterMatcher parse(char[] description) { |
| 30 | Parser parser = new Parser(description); |
no test coverage detected