Backend refactoring: KjcEngine has been split up into separate classes for preprocessing, compiling, and running.

This commit is contained in:
dmose
2003-07-04 18:43:47 +00:00
parent 7d0526e28e
commit 01a3cc6eda
11 changed files with 1211 additions and 1302 deletions

11
app/PdePreprocessor.java Normal file
View File

@@ -0,0 +1,11 @@
// This class will be the new CUP-generated preprocessor.
//
public class PdePreprocessor {
public PdePreprocessor() {
}
public String writeJava(String name, boolean kjc) {
return "This class is currently purely abstract";
}
}