@study-lenses/tracing
    Preparing search index...

    Type Alias SourceLoc

    Source code location for errors that occur at a specific point in code.

    Used by ParseError and RuntimeError to indicate where the error occurred. ESTree-compliant: line is 1-indexed, column is 0-indexed.

    type SourceLoc = {
        column: number;
        line: number;
    }
    Index

    Properties

    Properties

    column: number

    0-indexed column number (ESTree standard)

    line: number

    1-indexed line number (ESTree standard)