Theia API Documentation v1.65.0
    Preparing search index...

    Represents information about programming constructs like variables, classes, interfaces etc.

    Index

    Constructors

    • Creates a new symbol information object.

      Parameters

      • name: string

        The name of the symbol.

      • kind: SymbolKind

        The kind of the symbol.

      • containerName: string

        The name of the symbol containing the symbol.

      • location: Location

        The location of the symbol.

      Returns SymbolInformation

    • Creates a new symbol information object.

      Parameters

      • name: string

        The name of the symbol.

      • kind: SymbolKind

        The kind of the symbol.

      • range: Range

        The range of the location of the symbol.

      • Optionaluri: Uri

        The resource of the location of symbol, defaults to the current document.

      • OptionalcontainerName: string

        The name of the symbol containing the symbol.

      Returns SymbolInformation

      Please use the constructor taking a location object.

    Properties

    containerName: string

    The name of the symbol containing this symbol.

    The kind of this symbol.

    location: Location

    The location of this symbol.

    name: string

    The name of this symbol.

    tags?: readonly Deprecated[]