Comment on Jank is C++parentComments−fuhsnn1yThere is one pretty serious C++ parser project: https://github.com/robertoraggi/cplusplus−caim1yWow, thanks! I didn't know this project.To parse C++ you need to perform typecheck and name resolution at the same time. And C++ is pretty complex so it's not a easy task.
Comments
There is one pretty serious C++ parser project: https://github.com/robertoraggi/cplusplus
Wow, thanks! I didn't know this project.
To parse C++ you need to perform typecheck and name resolution at the same time. And C++ is pretty complex so it's not a easy task.