| 31 | vfs::Status S; |
| 32 | explicit DummyFile(vfs::Status S) : S(S) {} |
| 33 | llvm::ErrorOr<vfs::Status> status() override { return S; } |
| 34 | llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> |
| 35 | getBuffer(const Twine &Name, int64_t FileSize, bool RequiresNullTerminator, |
| 36 | bool IsVolatile) override { |
no outgoing calls
no test coverage detected