
Underscore-uglified identifiers are used in standard library implementations to guard against collisions with macros, and they hurt readability considerably. (Consider `push_back(Tp_ &&__value)` vs `push_back(Tp value)`. When we're describing an interface, the exact names of parameters are not critical so we can drop these prefixes. This patch adds a new PrintingPolicy flag that can applies this stripping when recursively printing pieces of AST. We set it in code completion/signature help, and in clangd's hover display. All three features also do a bit of manual poking at names, so fix up those too. Fixes https://github.com/clangd/clangd/issues/736 Differential Revision: https://reviews.llvm.org/D116387
26 lines
1.0 KiB
C++
26 lines
1.0 KiB
C++
// Fake standard library with uglified names.
|
|
// Parameters (including template params) get ugliness stripped.
|
|
namespace std {
|
|
|
|
template <typename _Tp>
|
|
class __vector_base {};
|
|
|
|
template <typename _Tp>
|
|
class vector : private __vector_base<_Tp> {
|
|
public:
|
|
_Tp &at(unsigned __index) const;
|
|
int __stays_ugly();
|
|
};
|
|
|
|
} // namespace std
|
|
|
|
int x = std::vector<int>{}.at(42);
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:17:14 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
|
|
// CHECK-CC1: COMPLETION: __vector_base : __vector_base<<#typename Tp#>>
|
|
// CHECK-CC1: COMPLETION: vector : vector<<#typename Tp#>>
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:17:28 %s -o - | FileCheck -check-prefix=CHECK-CC2 %s
|
|
// CHECK-CC2: COMPLETION: __stays_ugly : [#int#]__stays_ugly()
|
|
// CHECK-CC2: COMPLETION: at : [#int &#]at(<#unsigned int index#>)[# const#]
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:17:31 %s -o - | FileCheck -check-prefix=CHECK-CC3 %s
|
|
// CHECK-CC3: OVERLOAD: [#int &#]at(<#unsigned int index#>)
|