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

    Interface PikeParseResult

    Result of parsing a Pike file

    interface PikeParseResult {
        diagnostics: PikeDiagnostic[];
        symbols: PikeSymbol[];
        tokens?: PikeToken[];
    }
    Index

    Properties

    diagnostics: PikeDiagnostic[]

    Diagnostics (errors/warnings)

    symbols: PikeSymbol[]

    Extracted symbols

    tokens?: PikeToken[]

    Tokens (if requested)