(line, column)
| 162 | } |
| 163 | |
| 164 | fromLineAndColumn(line, column) { |
| 165 | let lineToIndex = getLineToIndex(this) |
| 166 | let index = lineToIndex[line - 1] |
| 167 | return index + column - 1 |
| 168 | } |
| 169 | |
| 170 | fromOffset(offset) { |
| 171 | let lineToIndex = getLineToIndex(this) |
no test coverage detected