1 instantiation of RunRequest
VBCSCompiler (1)
BuildProtocolUtil.cs (1)
35return new RunRequest(req.RequestId, language, currentDirectory, tempDirectory, libDirectory, arguments);
8 references to RunRequest
VBCSCompiler (5)
BuildProtocolUtil.cs (1)
18internal static RunRequest GetRunRequest(BuildRequest req)
ClientConnectionHandler.cs (1)
167var request = BuildProtocolUtil.GetRunRequest(buildRequest);
CompilerRequestHandler.cs (2)
77public bool TryCreateCompiler(in RunRequest request, BuildPaths buildPaths, [NotNullWhen(true)] out CommonCompiler? compiler) 105public BuildResponse RunCompilation(in RunRequest request, CancellationToken cancellationToken)
ICompilerServerHost.cs (1)
20BuildResponse RunCompilation(in RunRequest request, CancellationToken cancellationToken);
VBCSCompiler.UnitTests (3)
TestableCompilerServerHost.cs (3)
15internal Func<RunRequest, CancellationToken, BuildResponse> RunCompilation { get; } 18internal TestableCompilerServerHost(Func<RunRequest, CancellationToken, BuildResponse> runCompilation = null, ICompilerServerLogger logger = null) 24BuildResponse ICompilerServerHost.RunCompilation(in RunRequest request, CancellationToken cancellationToken)