https://www.youtube.com/watch?v=UBhT7nbWpMg


@TomF @rygorous metaprogramming: i can only stand it once i have a pipeline that keeps a perfect trace of source locations for each element: where did the original expression come from, and where, if any, is the macro that expanded it? (which has its own trace but you don't need this information in the initial report, just the point of entry)
the problems are at transition points, e.g. when generating C code. i can only specify a # line, so filename + line. no column, let alone a trace.
@TomF @rygorous the other thing is, if there is evaluation then there is intermediate state, and when this evaluation happens at compile time, then some problems need a compile time step debugger (or at the very least compile time printf debugging.)
so one either needs to turn the program into a program that generates a program, so existing debugging facilities can be used, or one avoids compile time expressions completely and lets the existing optimizer infrastructure deal with it.