use of de.be4.classicalb.core.parser.visualisation.ASTPrinter in project probparsers by bendisposto.
the class AbstractTest method parseInput.
protected Start parseInput(final String input, final boolean debugOutput) throws BException {
if (debugOutput) {
System.out.println();
System.out.println();
}
final EventBParser parser = new EventBParser();
final Start rootNode = parser.parse(input, debugOutput);
if (debugOutput) {
rootNode.apply(new ASTPrinter());
}
return rootNode;
}
use of de.be4.classicalb.core.parser.visualisation.ASTPrinter in project probparsers by bendisposto.
the class EventBParser method main.
public static void main(final String[] args) {
if (args.length < 1) {
System.err.println("usage: BParser [options] <BMachine file>");
System.err.println();
System.err.println("Available options are:");
System.err.println(CLI_SWITCH_VERBOSE + "\t\tVerbose output during lexing and parsing");
System.err.println(CLI_SWITCH_TIME + "\t\tOutput time used for complete parsing process.");
System.err.println(CLI_SWITCH_AST + "\t\tPrint AST on standard output.");
System.err.println(CLI_SWITCH_UI + "\t\tShow AST as Swing UI.");
System.exit(-1);
}
try {
final long start = System.currentTimeMillis();
final EventBParser parser = new EventBParser();
final Start tree = parser.parseFile(new File(args[args.length - 1]), isCliSwitchSet(args, CLI_SWITCH_VERBOSE));
final long end = System.currentTimeMillis();
System.out.println();
if (isCliSwitchSet(args, CLI_SWITCH_TIME)) {
System.out.println("Time for parsing: " + (end - start) + "ms");
}
if (isCliSwitchSet(args, CLI_SWITCH_AST)) {
System.out.println("AST:");
tree.apply(new ASTPrinter());
}
if (isCliSwitchSet(args, CLI_SWITCH_UI)) {
tree.apply(new ASTDisplay());
}
} catch (final IOException e) {
System.err.println();
System.err.println("Error reading input file: " + e.getLocalizedMessage());
System.exit(-2);
} catch (final BException e) {
System.err.println();
System.err.println("Error parsing input file: " + e.getLocalizedMessage());
System.exit(-3);
}
}
Aggregations