Hacker News new | ask | show | jobs
by flexvision 2212 days ago
What is a simple tool to produce ASTs from code? Can it work cross-language?
1 comments

I would start with https://astexplorer.net, which handles many languages, and provides interactivity: click on a node within the ast, and il will highlight the corresponding code and vice versa.

The ast's are usually language specific, therefore it's not cross language.