说我有这样的变量声明:
std::vector<MyType> myVector(1);
这在Clang AST中表示为CXXConstructExpr
。我有一个找到这个CXXConstructExpr
的匹配器,但我想从中提取MyType
的decl。
我尝试了各种各样的事情,但似乎没有任何作用:
const CXXConstructExpr* construct = Result.Nodes.getNodeAs<CXXConstructExpr>("expr");
construct->getConstructor()->getTemplateSpecializationArgs() // Always nullptr
construct->getConstructor()->getParent() // Seems to lose the template parameters
construct->getConstructor()->getDescribedTemplate() // Always nullptr
答案 0 :(得分:1)
这是一个匹配器:
collectionView
它从VarDecl开始并遍历到类型,这是varDecl(
has(
cxxConstructExpr()
)
,hasType(
classTemplateSpecializationDecl().bind(sp_dcl_bd_name_)
)
).bind(var_bd_name_);
隐藏在向量的ClassTemplateSpecializationDecl
中。在回调中,可以从ClassTemplateDecl
到模板参数列表工作,并对各个模板参数进行操作:
ClassTemplateSpecializationDecl
对于此代码:
using CTSD = ClassTemplateSpecializationDecl;
CTSD * spec_decl =
const_cast<CTSD *>(result.Nodes.getNodeAs<CTSD>(sp_dcl_bd_name_));
VarDecl * var_decl =
const_cast<VarDecl *>(result.Nodes.getNodeAs<VarDecl>(var_bd_name_));
if(spec_decl && var_decl) {
// get the template args
TemplateArgumentList const &tal(spec_decl->getTemplateArgs());
for(unsigned i = 0; i < tal.size(); ++i){
TemplateArgument const &ta(tal[i]);
// is this arg a type arg? If so, get that type
TemplateArgument::ArgKind k(ta.getKind());
std::string argName = "";
if(k==TemplateArgument::ArgKind::Type){
QualType t = ta.getAsType();
argName = t.getAsString();
}
// Could do similar actions for integral args, etc...
std::cout << "For variable declared at "
<< corct::sourceRangeAsString(var_decl->getSourceRange(),&sm) << ":"
<< spec_decl->getNameAsString()
<< ": template arg " << (i+1) << ": " << argName << std::endl;
} // for template args
} // if
这会产生:
struct B{int b_;};
std::vector<B> vb(1);
完整示例在github的代码分析和重构与Clang Tools示例repo:https://github.com/lanl/CoARCT(请参阅apps / TemplateType.cc)