enum class RedirectingFileSystem::RedirectKind
Description
The type of redirection to perform.
Declared at: llvm/include/llvm/Support/VirtualFileSystem.h:735
Enumerators
Name | Value | Comment |
---|---|---|
Fallthrough | 0 | Lookup the redirected path first (ie. the one specified in 'external-contents') and if that fails "fallthrough" to a lookup of the originally provided path. |
Fallback | 1 | Lookup the provided path first and if that fails, "fallback" to a lookup of the redirected path. |
RedirectOnly | 2 | Only lookup the redirected path, do not lookup the originally provided path. |