-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tester.java
81 lines (65 loc) · 1.49 KB
/
Tester.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import java_cup.runtime.Symbol;
import java.io.FileReader;
import java.util.ArrayList;
import Visitor.VisitableNode;
public class Tester {
public static void main(String[] args) throws Exception {
String[] terminalNames = new String[] {
"EOF",
"error",
"HEAD",
"START",
"SEMI",
"COMMA",
"DEF",
"NAME",
"LPAR",
"RPAR",
"COLON",
"LGPAR",
"RGPAR",
"INT_CONST",
"DOUBLE_CONST",
"STRING_CONST",
"PLUS",
"MINUS",
"TIMES",
"DIV",
"INT",
"BOOL",
"DOUBLE",
"READ",
"WRITE",
"TRUE",
"FALSE",
"ASSIGN",
"IF",
"THEN",
"WHILE",
"DO",
"ELSE",
"GT",
"GE",
"LT",
"LE",
"EQ",
"NOT",
"AND",
"OR",
"UMINUS"
};
if(args.length == 1) {
Lexer l = new Lexer(new FileReader(args[0]));
java_cup.runtime.Symbol token = null;
do {
token = l.next_token();
}while ( token.sym != 0);
System.out.println( "Lexer: FINE");
YASPL2Cup p = new YASPL2Cup(new Lexer(new FileReader(args[0])),"");
try{
p.parse();
} catch(Exception e){
System.exit(-1); }
} else { System.out.println("Usage: java -jar YASPLcompiler.jar SourceName");}
}
}