(chunks: RMarkdownChunk[] = _getChunks(),
line: number = _getStartLine())
| 224 | } |
| 225 | |
| 226 | export async function runCurrentChunk(chunks: RMarkdownChunk[] = _getChunks(), |
| 227 | line: number = _getStartLine()): Promise<void> { |
| 228 | const currentChunk = getCurrentChunk(chunks, line); |
| 229 | if (currentChunk) { |
| 230 | await runChunksInTerm([currentChunk.codeRange]); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | export async function runCurrentChunkAndMove(chunks: RMarkdownChunk[] = _getChunks(), |
| 235 | line: number = _getStartLine()): Promise<void> { |
nothing calls this directly
no test coverage detected