LCOV parser
    Preparing search index...

    Interface ParseResult<V>

    A parsed LCOV field entry. It may be incomplete, check the ParseResult#done and ParseResult#incomplete fields.

    interface ParseResult<V extends Variant = Variant> {
        done: boolean;
        incomplete: boolean;
        value: string[] | null;
        variant: V;
    }

    Type Parameters

    Index

    Properties

    done: boolean

    Signals that this is the last entry.

    incomplete: boolean

    Signals that there wasn't enough data to successfully parse the current buffer and more data is necessary to parse it successfully.

    value: string[] | null

    A list of string values which were present after the : (colon) separator, or null if the current variant shouldn't have values.

    variant: V

    Variant of the current field entry. See Variant for more information.