Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的代码访问了 libclang 生成的 AST,并在其中插入了一些代码。我想获得新的 AST,同时我想避免将代码写入文件,libclang 中有没有 api 可以做到这一点?
您可以使用解决方法 - CXUnsavedFiles。只需将更改的文件放在内存中,将其添加到 CXUnsavedFiles 并传递给 clang_reparseTranslationUnit。
你也可以看看 Rewriter 和 clang 的其他非稳定 API。