Implement IGoToBaseService
Open
Area-VS
Feature Request
- Dominant language
- F#
- Stars
- 4.3k
- Forks
- 876
- Avg merge
- 4d 11h
- Merged PRs (30d)
- 131
Description
This is the interface:
```csharp
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.FindUsages;
using Microsoft.CodeAnalysis.Host;
namespace Microsoft.CodeAnalysis.Editor.GoToBase
{
internal interface IGoToBaseService : ILanguageService
{
///
/// Finds the base members overridden or implemented by the symbol at the specific position in the document,
/// pushing the results into the context instance.
///
Task FindBasesAsync(Document document, int position, IFindUsagesContext context);
}
}
```
* Implement an F# version of the interface exposed via the shim
Contributor guide
Assessment
This issue has not been assessed yet.