(int[] x, int sign)
| 273 | // appendClassWithSign() calls appendClass() if sign is +1 or |
| 274 | // appendNegatedClass if sign is -1. Does not mutate |x|. |
| 275 | CharClass appendClassWithSign(int[] x, int sign) { |
| 276 | return sign < 0 ? appendNegatedClass(x) : appendClass(x); |
| 277 | } |
| 278 | |
| 279 | // appendGroup() appends CharGroup |g| to this CharClass, folding iff |
| 280 | // |foldCase|. Does not mutate |g|. |
no test coverage detected