2 implementations of ICompilerServerHost
VBCSCompiler (1)
src\Compilers\Server\VBCSCompiler\CompilerRequestHandler.cs (1)
42
internal sealed class CompilerServerHost :
ICompilerServerHost
VBCSCompiler.UnitTests (1)
TestableCompilerServerHost.cs (1)
13
internal sealed class TestableCompilerServerHost :
ICompilerServerHost
12 references to ICompilerServerHost
VBCSCompiler (9)
src\Compilers\Server\VBCSCompiler\BuildServerController.cs (3)
87
internal static
ICompilerServerHost
CreateCompilerServerHost(ICompilerServerLogger logger)
101
ICompilerServerHost
? compilerServerHost = null,
142
ICompilerServerHost
? compilerServerHost = null,
src\Compilers\Server\VBCSCompiler\ClientConnectionHandler.cs (3)
22
internal
ICompilerServerHost
CompilerServerHost { get; }
25
internal ClientConnectionHandler(
ICompilerServerHost
compilerServerHost)
163
static Task<BuildResponse> ProcessCompilationRequestCoreAsync(
ICompilerServerHost
compilerServerHost, BuildRequest buildRequest, CancellationToken cancellationToken)
src\Compilers\Server\VBCSCompiler\ServerDispatcher.cs (3)
54
private readonly
ICompilerServerHost
_compilerServerHost;
66
internal ServerDispatcher(
ICompilerServerHost
compilerServerHost, IClientConnectionHost clientConnectionHost, IDiagnosticListener? diagnosticListener = null)
335
ICompilerServerHost
compilerServerHost,
VBCSCompiler.UnitTests (3)
ServerUtil.cs (2)
80
ICompilerServerHost
compilerServerHost = null,
175
ICompilerServerHost
compilerServerHost = null,
TestableCompilerServerHost.cs (1)
24
BuildResponse
ICompilerServerHost
.RunCompilation(in RunRequest request, CancellationToken cancellationToken)