2 implementations of IEditAndContinueService
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\EditAndContinueService.cs (1)
27internal sealed class EditAndContinueService : IEditAndContinueService
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\MockEditAndContinueService.cs (1)
18internal sealed class MockEditAndContinueService() : IEditAndContinueService
20 references to IEditAndContinueService
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
EditAndContinue\EditAndContinueLanguageServiceTests.cs (1)
117mockEncService = (MockEditAndContinueService)localWorkspace.GetService<IEditAndContinueService>();
Microsoft.CodeAnalysis.ExternalAccess.Debugger (1)
GlassTestsHotReloadService.cs (1)
22private readonly IEditAndContinueService _encService;
Microsoft.CodeAnalysis.Features (11)
EditAndContinue\EditAndContinueService.cs (3)
26[Export(typeof(IEditAndContinueService)), Shared] 33IEditAndContinueService service, 36public IEditAndContinueService Service { get; } = service;
EditAndContinue\IEditAndContinueService.cs (1)
15IEditAndContinueService Service { get; }
EditAndContinue\IEditAndContinueSessionTracker.cs (2)
21/// Diagnostics reported by the last <see cref="IEditAndContinueService.EmitSolutionUpdateAsync"/> call. 23/// Does not include rude edits reported for added or changed documents, which are reported by <see cref="IEditAndContinueService.GetDocumentDiagnosticsAsync"/>,
EditAndContinue\Remote\RemoteDebuggingSessionProxy.cs (1)
20private IEditAndContinueService GetLocalService()
EditAndContinue\Remote\RemoteEditAndContinueServiceProxy.cs (1)
117private IEditAndContinueService GetLocalService()
ExternalAccess\UnitTesting\API\UnitTestingHotReloadService.cs (1)
57private readonly IEditAndContinueService _encService = services.GetRequiredService<IEditAndContinueWorkspaceService>().Service;
ExternalAccess\Watch\Api\WatchHotReloadService.cs (2)
133private readonly IEditAndContinueService _encService = services.GetRequiredService<IEditAndContinueWorkspaceService>().Service; 284public IEditAndContinueService EncService
Microsoft.CodeAnalysis.Features.Test.Utilities (2)
EditAndContinue\EditAndContinueWorkspaceTestBase.cs (1)
159var service = (EditAndContinueService)workspace.GetService<IEditAndContinueService>();
EditAndContinue\MockEditAndContinueService.cs (1)
15[Export(typeof(IEditAndContinueService)), Shared]
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\RemoteEditAndContinueServiceTests.cs (1)
60mockEncService = (MockEditAndContinueService)localWorkspace.GetService<IEditAndContinueService>();
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
Diagnostics\PullDiagnosticTests.cs (1)
1279var encService = (MockEditAndContinueService)testLspServer.TestWorkspace.GetService<IEditAndContinueService>();
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Services\EditAndContinue\RemoteEditAndContinueService.cs (2)
74private IEditAndContinueService GetService() 148var service = GetService();
Microsoft.CodeAnalysis.Remote.Workspaces (1)
EditAndContinue\ManagedHotReloadLanguageService.cs (1)
30IEditAndContinueService encService,