first version that fully compiles since the overhaul

This commit is contained in:
benfry
2003-11-11 18:03:15 +00:00
parent d2f27c5249
commit 5a5a87dc81
14 changed files with 290 additions and 533 deletions

View File

@@ -81,7 +81,7 @@ public class PdePreprocessor {
this.programReader = new StringReader(program);
this.buildPath = buildPath;
usingExternal = PdePreferences.getBoolean("play.external", false);
usingExternal = PdePreferences.getBoolean("run.external"); //, false);
}
/**
@@ -170,7 +170,7 @@ public class PdePreprocessor {
// if desired, serialize the parse tree to an XML file. can
// be viewed usefully with Mozilla or IE
if (PdePreferences.getBoolean("compiler.output_parse_tree", false)) {
if (PdePreferences.getBoolean("compiler.output_parse_tree")) {
stream = new PrintStream(new FileOutputStream("parseTree.xml"));
stream.println("<?xml version=\"1.0\"?>");