38  BufferList symbolBufferList;
 
   40  for (
const auto &CurrentIgnoresFilePath : IgnoresFilePathList) {
 
   44      return make_error<IgnoresFileNotFound>(CurrentIgnoresFilePath);
 
   46    auto Buffer = std::move(BufferOrErr.get());
 
   47    Buffer->getBuffer().split(Lines, 
'\n',  -1,
 
   49    symbolBufferList.push_back(std::move(Buffer));
 
   54  transform(Lines, Lines.begin(), [](StringRef 
Line) { return Line.trim(); });
 
   56  return APIIgnoresList(std::move(Lines), std::move(symbolBufferList));
 
 
llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > getBufferForFile(FileEntryRef Entry, bool isVolatile=false, bool RequiresNullTerminator=true, std::optional< int64_t > MaybeLimit=std::nullopt, bool IsText=true)
Open the specified file as a MemoryBuffer, returning a new MemoryBuffer if successful,...