@agentix-e/spel-ts - v1.2.2
    Preparing search index...

    Interface ParseError

    A single parse error with position information

    interface ParseError {
        code?: string;
        length?: number;
        message: string;
        position: number;
    }
    Index
    code?: string

    Machine-readable error code (optional, e.g., 'MISSING_TERNARY_COLON')

    length?: number

    Length of the problematic region (optional)

    message: string

    Human-readable error message

    position: number

    Character offset where the error starts