[PATCH] D96495: [clangd] Retire the cross-file-rename command-line flag.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 11 06:00:39 PST 2021
hokein created this revision.
hokein added a reviewer: sammccall.
Herald added subscribers: usaxena95, kadircet, arphaman.
hokein requested review of this revision.
Herald added subscribers: MaskRay, ilya-biryukov.
Herald added a project: clang.
This patch only focuses on the flag. Removing actual single-file mode
(and the flag in RenameOption) will come in a follow-up.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D96495
Files:
clang-tools-extra/clangd/refactor/Rename.h
clang-tools-extra/clangd/tool/ClangdMain.cpp
Index: clang-tools-extra/clangd/tool/ClangdMain.cpp
===================================================================
--- clang-tools-extra/clangd/tool/ClangdMain.cpp
+++ clang-tools-extra/clangd/tool/ClangdMain.cpp
@@ -286,6 +286,7 @@
RetiredFlag<bool> RecoveryASTType("recovery-ast-type");
RetiredFlag<bool> AsyncPreamble("async-preamble");
RetiredFlag<bool> CollectMainFileRefs("collect-main-file-refs");
+RetiredFlag<bool> CrossFileRename("cross-file-rename");
opt<int> LimitResults{
"limit-results",
@@ -295,7 +296,6 @@
init(100),
};
-
list<std::string> TweakList{
"tweaks",
cat(Features),
@@ -304,13 +304,6 @@
CommaSeparated,
};
-opt<bool> CrossFileRename{
- "cross-file-rename",
- cat(Features),
- desc("Enable cross-file rename feature."),
- init(true),
-};
-
opt<bool> FoldingRanges{
"folding-ranges",
cat(Features),
@@ -852,9 +845,6 @@
if (ForceOffsetEncoding != OffsetEncoding::UnsupportedEncoding)
Opts.Encoding = ForceOffsetEncoding;
- // Shall we allow to customize the file limit?
- Opts.Rename.AllowCrossFile = CrossFileRename;
-
if (CheckFile.getNumOccurrences()) {
llvm::SmallString<256> Path;
llvm::sys::fs::real_path(CheckFile, Path, /*expand_tilde=*/true);
Index: clang-tools-extra/clangd/refactor/Rename.h
===================================================================
--- clang-tools-extra/clangd/refactor/Rename.h
+++ clang-tools-extra/clangd/refactor/Rename.h
@@ -29,7 +29,7 @@
struct RenameOptions {
/// If true, enable cross-file rename; otherwise, only allows to rename a
/// symbol that's only used in the current file.
- bool AllowCrossFile = false;
+ bool AllowCrossFile = true;
/// The maximum number of affected files (0 means no limit), only meaningful
/// when AllowCrossFile = true.
/// If the actual number exceeds the limit, rename is forbidden.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D96495.322976.patch
Type: text/x-patch
Size: 1895 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210211/3e5f9239/attachment.bin>
More information about the cfe-commits
mailing list