Pike LSP TypeScript API - v0.1.0-alpha.20
    Preparing search index...

    Interface PikeToken

    Pike token from Parser.Pike PERF-004: Includes character position for efficient symbol position indexing

    interface PikeToken {
        character: number;
        file: string | number;
        line: number;
        text: string;
    }
    Index

    Properties

    character: number

    Character position (0-indexed), -1 if not available

    file: string | number

    File identifier

    line: number

    Line number (1-indexed)

    text: string

    Token text