(doc: Text, index: number)
| 60 | } |
| 61 | |
| 62 | function charAt(doc: Text, index: number): string { |
| 63 | if (index < 0 || index >= doc.length) return ""; |
| 64 | return doc.sliceString(index, index + 1); |
| 65 | } |
| 66 | |
| 67 | function findPrevNonWhitespace(doc: Text, index: number): number { |
| 68 | for (let i = index - 1; i >= 0; i--) { |
no outgoing calls
no test coverage detected