-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParserTest1.java
More file actions
40 lines (35 loc) · 1023 Bytes
/
Copy pathParserTest1.java
File metadata and controls
40 lines (35 loc) · 1023 Bytes
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
import java.io.*;
import java.util.Hashtable;
import minipython.lexer.Lexer;
import minipython.parser.Parser;
import minipython.node.Start;
public class ParserTest1
{
public static void main(String[] args)
{
try
{
Parser parser =
new Parser(
new Lexer(
new PushbackReader(
new FileReader(args[0].toString()), 1024)));
Start ast = parser.parse();
Hashtable symtable = new Hashtable();
Hashtable symtable3 = new Hashtable();
Hashtable symtable1 = new Hashtable();
Hashtable symtable2 = new Hashtable();
ast.apply(new myvisitor1_5(symtable));
ast.apply(new myvisitor2(symtable));
ast.apply(new myvisitor3(symtable3));
ast.apply(new TypeCheckVisitor4(symtable1));
ast.apply(new TypeCheckVisitor4b(symtable1));
ast.apply(new MyFunctionVisitor6(symtable1));
ast.apply(new FunctionRedeclarationChecker7(symtable2));
}
catch (Exception e)
{
System.err.println(e);
}
}
}