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

    Interface IntrospectionResult

    Result of introspecting a compiled Pike program

    interface IntrospectionResult {
        classes: IntrospectedSymbol[];
        diagnostics: PikeDiagnostic[];
        functions: IntrospectedSymbol[];
        inherits: InheritanceInfo[];
        success: number;
        symbols: IntrospectedSymbol[];
        variables: IntrospectedSymbol[];
    }
    Index

    Properties

    classes: IntrospectedSymbol[]

    Classes only

    diagnostics: PikeDiagnostic[]

    Diagnostics from compilation

    functions: IntrospectedSymbol[]

    Functions only

    inherits: InheritanceInfo[]

    Inheritance information

    success: number

    Success flag

    symbols: IntrospectedSymbol[]

    All symbols found

    variables: IntrospectedSymbol[]

    Variables only