@eagleoutice/flowr - v2.10.2
    Preparing search index...

    Interface ReplParserTestCase<QueryType>

    interface ReplParserTestCase<QueryType extends BaseQueryFormat["type"]> {
        config?: object;
        expectedParse: ParsedQueryLine<QueryType>;
        label: string;
        line: readonly string[];
        parser: (
            output: ReplOutput,
            splitLine: readonly string[],
            config: FlowrConfig,
        ) => ParsedQueryLine<QueryType>;
    }

    Type Parameters

    Index

    Properties

    config?: object
    expectedParse: ParsedQueryLine<QueryType>
    label: string
    line: readonly string[]
    parser: (
        output: ReplOutput,
        splitLine: readonly string[],
        config: FlowrConfig,
    ) => ParsedQueryLine<QueryType>