Interface ReferenceProvider

The reference provider interface defines the contract between extensions and the find references-feature.

interface ReferenceProvider {
    provideReferences(document, position, context, token): ProviderResult<Location[]>;
}

Methods