mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 16:16:06 +00:00

The core engine of clang-rename will be used for local and global renames in the new refactoring engine, as mentioned in http://lists.llvm.org/pipermail/cfe-dev/2017-June/054286.html. The clang-rename tool is still supported but might get deprecated in the future. Differential Revision: https://reviews.llvm.org/D34696 llvm-svn: 306840
11 lines
299 B
C++
11 lines
299 B
C++
class Foo1 { // CHECK: class Bar1
|
|
};
|
|
|
|
class Foo2 { // CHECK: class Bar2
|
|
};
|
|
|
|
// Test 1.
|
|
// RUN: clang-rename -input %S/Inputs/OffsetToNewName.yaml %s -- | sed 's,//.*,,' | FileCheck %s
|
|
// Test 2.
|
|
// RUN: clang-rename -input %S/Inputs/QualifiedNameToNewName.yaml %s -- | sed 's,//.*,,' | FileCheck %s
|