3 instantiations of FileCheckResult
SuperFileCheck (3)
Program.cs (3)
119
return new
FileCheckResult
(1, String.Empty, String.Empty);
157
return new
FileCheckResult
(exitCode, stdOut.ToString(), stdErr.ToString());
162
return new
FileCheckResult
(1, String.Empty, ex.Message);
4 references to FileCheckResult
SuperFileCheck (4)
Program.cs (4)
101
static async Task<
FileCheckResult
> RunLLVMFileCheckAsync(string[] args)
418
static async Task<
FileCheckResult
> RunSuperFileCheckAsync(MethodDeclarationInfo methodDeclInfo, string[] args, string[] checkPrefixes, string tmpFilePath)
709
var tasks = new Task<
FileCheckResult
>[methodDeclInfos.Length];
764
var
result = await RunLLVMFileCheckAsync(args);