-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lox.java
62 lines (51 loc) · 1.76 KB
/
Lox.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
package com.craftinginterpreters.lox;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
import com.craftinginterpreters.lox.Scanner;
//import static com.craftinginterpreters.lox.Lox.report;
public class Lox {
static boolean hadError = false;
public static void main(String[] args) throws IOException {
if(args.length > 1){
System.out.println("Usage: jlox [scripts]");
System.exit(64);
} else if (args.length == 1) {
runFile(args[0]);
}else {
runPrompt();
}
}
private static void runPrompt() throws IOException {
InputStreamReader input = new InputStreamReader(System.in);
BufferedReader reader = new BufferedReader(input);
for(;;){
System.out.println(">");
String line = reader.readLine();
if(line == null) break;
run(line);
hadError = true;
}
}
private static void runFile(String path) throws IOException {
byte[] bytes = Files.readAllBytes(Paths.get(path));
run(new String(bytes, Charset.defaultCharset()));
// Indicate en error in the exit code
if(hadError) System.exit(65);
}
private static void run(String source) {
Scanner scanner = new Scanner(source);
List<Token> tokens = scanner.scanTokens();
}
static void error(int line, String message){
report(line, "", message);
}
private static void report(int line, String where, String message){
System.err.println("[line " + line + "] Error " + where + ": " + message);
hadError = true;
}
}