-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTester.java
32 lines (27 loc) · 1.14 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
import Visitor.CVisitor;
import Visitor.SemanticVisitor;
import Visitor.SyntaxVisitor;
import java_cup.runtime.Symbol;
import nodes.ProgramNode;
import java.io.FileReader;
import java.nio.file.Path;
import java.nio.file.Paths;
public class Tester {
public static void main(String[] args) throws Exception {
Path path = Paths.get(args[0]);
FileReader rd = new FileReader(args[0]);
Path filename = path.getFileName();
Lexer l = new Lexer(rd);
parser p = new parser(l);
Symbol s = p.parse(); // l'uso di p.debug_parse() al posto di p.parse() produce tutte le azioni del parser durante il riconoscimento
ProgramNode programNode = (ProgramNode) s.value;
SyntaxVisitor syntaxVisitor = new SyntaxVisitor();
syntaxVisitor.visit(programNode);
syntaxVisitor.saveXML(filename.toString());
SemanticVisitor semanticVisitor = new SemanticVisitor();
semanticVisitor.visit(programNode);
CVisitor.FILE_NAME = filename.toString().substring(0,filename.toString().lastIndexOf('.')) + ".c";
CVisitor cVisitor = new CVisitor();
cVisitor.visit(programNode);
}
}