Hacker News new | ask | show | jobs
by uaksom 196 days ago
(author here) If you run the parser under a debugger like lldb, then attempt to inspect the AST of a program, it appears as an array of u64. Not very useful, unless you work on special support for debuggers (such as a python script to unpack it in lldb). Compare that to a tree of pointers, you can "expand" nodes without any extra effort.
1 comments

I guess that makes sense. But I don't ever look at AST in a debugger, and if I needed to, I'd just write some python helpers.