diff options
author | Alex Lorenz <arphaman@gmail.com> | 2017-11-01 01:12:56 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2017-11-01 01:12:56 +0000 |
commit | 61f2c3f58c56b235dd0f04a72a7c05adeeb837d2 (patch) | |
tree | faca5d8788acc989075b65c31b61ee1e684bfdbe /clang/lib/Tooling/Refactoring/Extract.cpp | |
parent | df00e89cdc39f0275f5b62396dea8f42ed233a13 (diff) | |
download | bcm5719-llvm-61f2c3f58c56b235dd0f04a72a7c05adeeb837d2.tar.gz bcm5719-llvm-61f2c3f58c56b235dd0f04a72a7c05adeeb837d2.zip |
[refactor][extract] code extracted from inline method should be placed
in a function defined before the outer class
llvm-svn: 317062
Diffstat (limited to 'clang/lib/Tooling/Refactoring/Extract.cpp')
-rw-r--r-- | clang/lib/Tooling/Refactoring/Extract.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/clang/lib/Tooling/Refactoring/Extract.cpp b/clang/lib/Tooling/Refactoring/Extract.cpp index e81bb3ffe9b..3f5a839318b 100644 --- a/clang/lib/Tooling/Refactoring/Extract.cpp +++ b/clang/lib/Tooling/Refactoring/Extract.cpp @@ -15,6 +15,7 @@ #include "clang/Tooling/Refactoring/Extract/Extract.h" #include "clang/AST/ASTContext.h" +#include "clang/AST/DeclCXX.h" #include "clang/AST/Expr.h" #include "clang/AST/ExprObjC.h" #include "clang/Rewrite/Core/Rewriter.h" @@ -44,8 +45,12 @@ bool isSimpleExpression(const Expr *E) { } SourceLocation computeFunctionExtractionLocation(const Decl *D) { - // FIXME (Alex L): Method -> function extraction should place function before - // C++ record if the method is defined inside the record. + if (isa<CXXMethodDecl>(D)) { + // Code from method that is defined in class body should be extracted to a + // function defined just before the class. + while (const auto *RD = dyn_cast<CXXRecordDecl>(D->getLexicalDeclContext())) + D = RD; + } return D->getLocStart(); } |