(input: string, searchStartIndex = 0)
| 90 | } |
| 91 | |
| 92 | export function getParenthesesRange(input: string, searchStartIndex = 0): TextRange | null { |
| 93 | return getOpenCloseRange(input, searchStartIndex, '(', ')', []); |
| 94 | } |
| 95 | |
| 96 | export function getOpenCloseRange( |
| 97 | input: string, |
no test coverage detected