(chunks: RMarkdownChunk[] = _getChunks(),
line: number = _getStartLine())
| 366 | } |
| 367 | |
| 368 | export function goToPreviousChunk(chunks: RMarkdownChunk[] = _getChunks(), |
| 369 | line: number = _getStartLine()): void { |
| 370 | const previousChunk = getPreviousChunk(chunks, line); |
| 371 | if (previousChunk) { |
| 372 | void goToChunk(previousChunk); |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | export function goToNextChunk(chunks: RMarkdownChunk[] = _getChunks(), |
| 377 | line: number = _getStartLine()): void { |
nothing calls this directly
no test coverage detected