提交 2a78a734 编写于 作者: D David Barbet

Fix c#/vb goto def shim names.

上级 ba3e30b5
......@@ -15,19 +15,19 @@ public GoToDefinitionHandlerShim(IEnumerable<Lazy<IRequestHandler, IRequestHandl
}
[ExportLspRequestHandler(LiveShareConstants.CSharpContractName, Methods.TextDocumentDefinitionName)]
internal class CSharpFindImplementationsHandlerShim : GoToDefinitionHandlerShim
internal class CSharpGoToDefinitionHandlerShim : GoToDefinitionHandlerShim
{
[ImportingConstructor]
public CSharpFindImplementationsHandlerShim([ImportMany] IEnumerable<Lazy<IRequestHandler, IRequestHandlerMetadata>> requestHandlers) : base(requestHandlers)
public CSharpGoToDefinitionHandlerShim([ImportMany] IEnumerable<Lazy<IRequestHandler, IRequestHandlerMetadata>> requestHandlers) : base(requestHandlers)
{
}
}
[ExportLspRequestHandler(LiveShareConstants.VisualBasicContractName, Methods.TextDocumentDefinitionName)]
internal class VisualBasicFindImplementationsHandlerShim : GoToDefinitionHandlerShim
internal class VisualBasicGoToDefinitionHandlerShim : GoToDefinitionHandlerShim
{
[ImportingConstructor]
public VisualBasicFindImplementationsHandlerShim([ImportMany] IEnumerable<Lazy<IRequestHandler, IRequestHandlerMetadata>> requestHandlers) : base(requestHandlers)
public VisualBasicGoToDefinitionHandlerShim([ImportMany] IEnumerable<Lazy<IRequestHandler, IRequestHandlerMetadata>> requestHandlers) : base(requestHandlers)
{
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册