#include "Protocol.h"
#include "SourceCode.h"
#include "clang/Basic/IdentifierTable.h"
#include "clang/Basic/LangOptions.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/Error.h"
#include <optional>
Go to the source code of this file.
|
namespace | clang |
| ===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
|
|
namespace | clang::clangd |
| FIXME: Skip testing on windows temporarily due to the different escaping code mode.
|
|
|
llvm::Expected< RenameResult > | clang::clangd::rename (const RenameInputs &RInputs) |
| Renames all occurrences of the symbol.
|
|
llvm::Expected< Edit > | clang::clangd::buildRenameEdit (llvm::StringRef AbsFilePath, llvm::StringRef InitialCode, std::vector< SymbolRange > Occurrences, llvm::ArrayRef< llvm::StringRef > NewNames) |
| Generates rename edits that replaces all given occurrences with the NewName.
|
|
std::optional< std::vector< SymbolRange > > | clang::clangd::adjustRenameRanges (llvm::StringRef DraftCode, llvm::StringRef Identifier, std::vector< Range > Indexed, const LangOptions &LangOpts, std::optional< Selector > Selector) |
| Adjusts indexed occurrences to match the current state of the file.
|
|
std::optional< std::vector< SymbolRange > > | clang::clangd::getMappedRanges (ArrayRef< Range > Indexed, ArrayRef< SymbolRange > Lexed) |
| Calculates the lexed occurrences that the given indexed occurrences map to.
|
|
size_t | clang::clangd::renameRangeAdjustmentCost (ArrayRef< Range > Indexed, ArrayRef< SymbolRange > Lexed, ArrayRef< size_t > MappedIndex) |
| Evaluates how good the mapped result is.
|
|