circu.js
    Preparing search index...

    Interface ParserExecuteResult

    Result from Parser.execute

    interface ParserExecuteResult {
        bytesConsumed: number;
        errno: number;
        name: string;
        reason: string | null;
    }
    Index

    Properties

    bytesConsumed: number

    Bytes consumed from input buffer

    errno: number

    Parser error number (0 = success)

    name: string

    Error name string (e.g., "HPE_OK")

    reason: string | null

    Human-readable error reason or null