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

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

Methods