}
if (bodyStartLine < linesWithEOL.length) {
// range starts on the line after the ---, and ends at the beginning of line after the last line
promptFileParser.ts
const range = new Range(bodyStartLine + 1, 1, linesWithEOL.length + 1, 1);
body = new PromptBody(range, linesWithEOL, uri);
}
return new ParsedPromptFile(uri, header, body);
}