Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement IGoToBaseService #6818

Open
cartermp opened this issue May 23, 2019 · 0 comments
Open

Implement IGoToBaseService #6818

cartermp opened this issue May 23, 2019 · 0 comments
Labels
Area-VS VS support for F# not covered elsewhere Feature Request
Milestone

Comments

@cartermp
Copy link
Contributor

cartermp commented May 23, 2019

This is the interface:

using System.Threading.Tasks;
using Microsoft.CodeAnalysis.FindUsages;
using Microsoft.CodeAnalysis.Host;

namespace Microsoft.CodeAnalysis.Editor.GoToBase
{
    internal interface IGoToBaseService : ILanguageService
    {
        /// <summary>
        /// Finds the base members overridden or implemented by the symbol at the specific position in the document,
        /// pushing the results into the context instance.
        /// </summary>
        Task FindBasesAsync(Document document, int position, IFindUsagesContext context);
    }
}
  • Implement an F# version of the interface exposed via the shim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-VS VS support for F# not covered elsewhere Feature Request
Projects
Status: New
Development

No branches or pull requests

2 participants