I am working on a Delphi version of StringTemplate 4. To do that I need access to all the Java source files. I downloaded the Java source on 19 Nov 2013.
In the file Compiler.java in the folder Compiler is the routine :-
/** Compile full template with respect to a list of formal arguments. */
public CompiledST compile( ...
In this routine is a call to STParser.
Looking in the folder Compiler is the file 'STParser.g'. However there is no file 'STParser.java'. Similar problems exist for the files 'CodeGenerator.g' and 'Group.g'.
Where are the Java versions of those files? How can I obtain them?