(int which, int i)
| 668 | /// |
| 669 | /// - `i`: Index in input array |
| 670 | protected final void setParenStart(int which, int i) { |
| 671 | if (which < parenCount) { |
| 672 | switch (which) { |
| 673 | case 0: |
| 674 | start0 = i; |
| 675 | break; |
| 676 | |
| 677 | case 1: |
| 678 | start1 = i; |
| 679 | break; |
| 680 | |
| 681 | case 2: |
| 682 | start2 = i; |
| 683 | break; |
| 684 | |
| 685 | default: |
| 686 | if (startn == null) { |
| 687 | allocParens(); |
| 688 | } |
| 689 | startn[which] = i; |
| 690 | break; |
| 691 | } |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | /// Sets the end of a paren level |
| 696 | /// |
no test coverage detected