(int which)
| 654 | /// |
| 655 | /// Number of characters in the parenthesized subexpression |
| 656 | public final int getParenLength(int which) { |
| 657 | if (which < parenCount) { |
| 658 | return getParenEnd(which) - getParenStart(which); |
| 659 | } |
| 660 | return -1; |
| 661 | } |
| 662 | |
| 663 | /// Sets the start of a paren level |
| 664 | /// |
no test coverage detected