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