I am trying to use "generated/com/foo/bar" as the output directory, but ASTGen doesn't seem to like it.
I have tried all of the following, and each one gives a different error from the parser:
outputdir generated/com/foo/bar/;
Expected token type 59 but found type -3
outputdir "generated/com/foo/bar/";
Expected token type -3 but found type 34
outputdir generated\edu\cmu\cs\nbeckman\;
Expected token type 59 but found type 92
outputdir generated\\edu\\cmu\\cs\\nbeckman\\;
Expected token type 59 but found type 92
What is the correct way to do this?