Retrieves information about the token the current mode found before the given position (a {line, ch} object).
(pos: CodeMirror.Position)
| 284 | |
| 285 | /** Retrieves information about the token the current mode found before the given position (a {line, ch} object). */ |
| 286 | getTokenAt(pos: CodeMirror.Position): { |
| 287 | /** The character(on the given line) at which the token starts. */ |
| 288 | start: number; |
| 289 | /** The character at which the token ends. */ |
no outgoing calls
no test coverage detected