blob: 57ac1f8e2b386b8601a5187a87c104be573713bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
package pl.edu.mimuw.cloudatlas.interpreter.query;
import java.io.FileNotFoundException;
import java.io.FileReader;
public class Test
{
public static void main(String args[]) throws Exception
{
Yylex l = null;
parser p;
try
{
if (args.length == 0) l = new Yylex(System.in);
else l = new Yylex(new FileReader(args[0]));
}
catch(FileNotFoundException e)
{
System.err.println("Error: File not found: " + args[0]);
System.exit(1);
}
p = new parser(l);
/* The default parser is the first-defined entry point. */
/* You may want to change this. Other options are: */
/* */
try
{
pl.edu.mimuw.cloudatlas.interpreter.query.Absyn.Program parse_tree = p.pProgram();
System.out.println();
System.out.println("Parse Succesful!");
System.out.println();
System.out.println("[Abstract Syntax]");
System.out.println();
System.out.println(PrettyPrinter.show(parse_tree));
System.out.println();
System.out.println("[Linearized Tree]");
System.out.println();
System.out.println(PrettyPrinter.print(parse_tree));
}
catch(Throwable e)
{
System.err.println("At line " + String.valueOf(l.line_num()) + ", near \"" + l.buff() + "\" :");
System.err.println(" " + e.getMessage());
System.exit(1);
}
}
}
|