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

    Interface ParserContent<T>

    interface ParserContent<T> {
        close(): void;
        incremental: boolean;
        information(analyzer: FlowrAnalysisProvider): BaseParserInformation;
        name: string;
        parse(
            request: RParseRequestFromText & { filePath?: string },
            inc: FlowrAnalyzerContext | undefined,
        ): T;
    }

    Type Parameters

    • T
    Index
    incremental: boolean

    Whether the parser has incremental parsing capabilities

    name: string