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