blob: 80aa1e3ac9e42c2cf290c53b28cf759e0e88eeb6 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
package Interpreter;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
import java.util.Scanner;
//Base class for the interpreter
public class Language {
static boolean hadError = false;
public static void main(String[] args){
//Allow users to input a single line of code
//Still needs some work to re-ask for input after each line
if (args.length < 1){
Scanner input = new Scanner(System.in);
String sourceCode = "1";
while (sourceCode!=""){
System.out.print("Code: ");
sourceCode = input.nextLine();
runInterpreter(sourceCode);
hadError=false;
}
input.close();
//Allow users to provide a path to a file as an argument
} else if (args.length==1){
try {
String sourcecode = Files.readString(Paths.get(args[0])); //Maybe should set charset here
runInterpreter(sourcecode);
} catch (IOException exception){
System.out.println("File not found");
}
} else {
System.out.println("Error, argument should be file path");
System.exit(64);
}
}
//Extract and print each token
private static void runInterpreter(String sourceCode){
TokenScanner scanner = new TokenScanner();
List<Token> tokens = scanner.extractTokens(sourceCode);
//for (Token token : tokens) {
// System.out.println(token);
//}
if (hadError) return;
//Parse into AST
Parser parser = new Parser(tokens);
List<Statement> ast = parser.parse();
if (hadError) return;
Interpreter interpreter = new Interpreter();
interpreter.interpret(ast);
}
static void displayError(String message){
hadError=true;
System.out.println("An error was encountered");
System.out.println(message);
}
}
|