(position: CursorPosition)
| 241 | } |
| 242 | |
| 243 | isValid(position: CursorPosition): boolean { |
| 244 | const entries = this.getEntryListForLineIndex(position.lineIndex) |
| 245 | const cursorEntry = entries[position.entryIndex] |
| 246 | if (cursorEntry) { |
| 247 | return true |
| 248 | } |
| 249 | return false |
| 250 | } |
| 251 | |
| 252 | getCoordinates(position: CursorPosition): [number, number] { |
| 253 | const entries = this.getEntryListForLineIndex(position.lineIndex) |
no test coverage detected