-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParserTest.java
35 lines (32 loc) · 987 Bytes
/
ParserTest.java
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
import java.io.*;
import minipython.lexer.Lexer;
import minipython.parser.Parser;
import minipython.node.*;
import java.util.*;
public class ParserTest
{
public static void main(String[] args)
{
try
{
Parser parser =
new Parser(
new Lexer(
new PushbackReader(
new FileReader(args[0].toString()), 1024)));
Hashtable symtable = new Hashtable();
Start ast = parser.parse();
ast.apply(new Visitor(symtable));
if(Visitor.errors == 0){
ast.apply(new Visitor2(symtable));
System.out.println("Total errors found: " + Visitor2.errors);
} else {
System.out.println("Total errors found: " + Visitor.errors);
}
}
catch (Exception e)
{
System.err.println(e);
}
}
}