c++ 的 parsec 解析器功能?
是否有任何带有 parsec 的 C++ 函数的开源解析器实现?
找不到任何,不想使用 libClang,因为安装失败
is there any open source parser implementation for c++ functions with parsec?
can't find any, dont want to use libClang, becuase installation failes
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,
为什么? C++ 非常非常难解析。因此,虽然有用于 C 的纯 Haskell 解析器(例如 Language.C),但还有 除了您已经知道的 libclang 绑定之外,还没有实现 C++ 解析器。
参考:
No.
Why? C++ is very, very difficult to parse. So while there are pure Haskell parsers for C (e.g Language.C) there is no C++ parser implemented yet, other than the libclang binding which you are already aware of.
References: