//this would invoke compiler's parser at CTFE auto ast = "x = y;".astof ast.toString() //get back a string of D code
Right, that's the basic functionality we want. What's not clear is how to get the type of y.
//this would invoke compiler's parser at CTFE auto ast = "x = y;".astof ast.toString() //get back a string of D code
Right, that's the basic functionality we want. What's not clear is how to get the type of y.