是否有任何简单可靠的方法(也就是非正则表达式)将函数指针声明的 QualType
获取为字符串但附加了名称?我尝试研究利用 QualType::getAsString(const PrintingPolicy &Policy)
,但不幸的是,该配置没有选项。
例如int (*)(void)
----> int (*whatever_name_here)(void)
最佳答案
您可以创建 VarDecl
并打印它。
假设 ctx
是您的 ASTContext
并且 type
是您的 QualType
,您可以执行以下操作:
// Create identifier.
IdentifierInfo id = ctx.Idents.get("whatever_name_here");
// Create variable declaration.
VarDecl *vd = VarDecl::Create(ctx, ctx.getTranslationUnitDecl(),
SourceLocation(), SourceLocation(), &id, type, nullptr, StorageClass:SC_None);
// Print it.
vd->print(/* put your llvm::raw_stream here */, ctx.getPrintingPolicy());
关于c++ - 可以使用 Clang AST 打印带有名称的函数指针的 QualType 吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45927815/