String srcName = compiler.Main.prgName + ".proteus";
try { srcFile = new FileReader(srcName); }
catch (FileNotFoundException _) { Report.error("Source file '" + srcName + "' cannot be opened.", 1); }
PrintStream xml = XML.open("synanal");
ProteusLex lexer = new ProteusLex(srcFile);
ProteusSyn parser = new ProteusSyn(lexer);
try {
parser.debug_parse(xml);
}
catch (Exception ex) {