2 implementations of IEndConstructGenerationService
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
EndConstruct\CSharpEndConstructGenerationService.cs (1)
18internal class CSharpEndConstructGenerationService : IEndConstructGenerationService
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (1)
EndConstructGeneration\VisualBasicEndConstructGenerationService.vb (1)
23Implements IEndConstructGenerationService
7 references to IEndConstructGenerationService
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
EndConstruct\CSharpEndConstructGenerationService.cs (1)
16[ExportLanguageService(typeof(IEndConstructGenerationService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (5)
EndConstructGeneration\EndConstructCommandHandler.vb (2)
82Dim endConstructService = document.GetLanguageService(Of IEndConstructGenerationService)() 116Dim endConstructService = document.GetLanguageService(Of IEndConstructGenerationService)()
EndConstructGeneration\VisualBasicEndConstructGenerationService.vb (2)
21<ExportLanguageService(GetType(IEndConstructGenerationService), LanguageNames.VisualBasic), [Shared]> 483Public Function TryDo(textView As ITextView, subjectBuffer As ITextBuffer, typedChar As Char, cancellationToken As CancellationToken) As Boolean Implements IEndConstructGenerationService.TryDo
Utilities\CommandHandlers\AbstractImplementAbstractClassOrInterfaceCommandHandler.vb (1)
105Dim endConstructGenerationService = document.GetLanguageService(Of IEndConstructGenerationService)()
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (1)
EndConstructGeneration\EndConstructCommandHandlerTests.vb (1)
15Private ReadOnly _endConstructServiceMock As New Mock(Of IEndConstructGenerationService)(MockBehavior.Strict)