Sets bits in table matched by this matcher.
(BitSet table)
| 553 | * Sets bits in {@code table} matched by this matcher. |
| 554 | */ |
| 555 | @GwtIncompatible // java.util.BitSet |
| 556 | void setBits(BitSet table) { |
| 557 | for (int c = Character.MAX_VALUE; c >= Character.MIN_VALUE; c--) { |
| 558 | if (matches((char) c)) { |
| 559 | table.set(c); |
| 560 | } |
| 561 | } |
| 562 | } |
| 563 | |
| 564 | // Text processing routines |
| 565 |