//===-- RealpathPrefixes.cpp ----------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "lldb/Utility/RealpathPrefixes.h" #include "lldb/Utility/FileSpec.h" #include "lldb/Utility/FileSpecList.h" #include "lldb/Utility/LLDBLog.h" #include "lldb/Utility/Log.h" #include "lldb/lldb-private-types.h" usingnamespacelldb_private; RealpathPrefixes::RealpathPrefixes( const FileSpecList &file_spec_list, llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> fs) : … { … } std::optional<FileSpec> RealpathPrefixes::ResolveSymlinks(const FileSpec &file_spec) { … }