LCOV parser
    Preparing search index...

    Interface BranchEntry

    interface BranchEntry {
        block: number;
        branch: string;
        hit: number;
        isException: boolean;
        line: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    block: number

    The block number.

    branch: string

    A human-readable string, which should uniquely identify a given branch.

    hit: number

    Number of executions for this line.

    isException: boolean

    Possibly a catch or otherwise exception-related branch.

    line: number

    The associated line number.