Result of parsing a REPL code command line. rCode may be undefined, in which case the R code of a previous REPL command will be re-used.

interface ParsedReplLine {
    rCode: undefined | string;
    remaining: string[];
}

Properties

Properties

rCode: undefined | string
remaining: string[]