Sets bits in table matched by this matcher.
(BitSet table)
| 621 | */ |
| 622 | |
| 623 | @GwtIncompatible // java.util.BitSet |
| 624 | void setBits(BitSet table) { |
| 625 | for (int c = Character.MAX_VALUE; c >= Character.MIN_VALUE; c--) { |
| 626 | if (matches((char) c)) { |
| 627 | table.set(c); |
| 628 | } |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | // Text processing routines |
| 633 |