private IEnumerable<ICompilerFile> GetCombineFileNames(ICompilerFile inputFileContent)
 {
     return inputFileContent.ReadLines()
         .Select(l => _lineRegex.Match(l))
         .Where(m => m.Success)
         .Select(m => inputFileContent.GetRelativeFile(m.Value));
 }