(chunk: RMarkdownChunk, line: number = _getStartLine())
| 220 | return textEditor.selection.start.line; |
| 221 | } |
| 222 | export function isWithinChunk(chunk: RMarkdownChunk, line: number = _getStartLine()): boolean { |
| 223 | return (line >= chunk.startLine && line <= chunk.endLine); |
| 224 | } |
| 225 | |
| 226 | export async function runCurrentChunk(chunks: RMarkdownChunk[] = _getChunks(), |
| 227 | line: number = _getStartLine()): Promise<void> { |
no test coverage detected