Member Junction
    Preparing search index...

    A single finding: one string literal or identifier in source code that uses an old entity name or class name.

    interface EntityNameFinding {
        Column: number;
        EndPos: number;
        FilePath: string;
        Line: number;
        NewName: string;
        OldName: string;
        PatternKind: EntityNamePatternKind;
        QuoteChar: string;
        StartPos: number;
    }
    Index

    Properties

    Column: number

    0-based character offset within the line

    EndPos: number

    0-based end position of the token in the file

    FilePath: string

    Absolute path to the source file

    Line: number

    1-based line number

    NewName: string

    The corrected name

    OldName: string

    The old name found

    The kind of pattern matched

    QuoteChar: string

    The quote character used (' or " or `) — empty string for class name references

    StartPos: number

    0-based start position of the token in the file