-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterpreter.java
40 lines (30 loc) · 979 Bytes
/
Interpreter.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
package IngSoft.Interpreter;
import java.util.ArrayList;
public class Interpreter {
public static void main(String[] args) {
args = new String[2];
args[0] = "semicorchea";
args[1] = "2";
ArrayList<Expression> tree = new ArrayList();
Context context = new Context();
boolean isNumber = false;
int line = -1;
for(String token : args) {
try {
line = Integer.parseInt(token);
isNumber = true;
} catch (Exception e) {
isNumber = false;
}
if(isNumber) {
tree.add(new FigureExpression(line));
} else {
tree.add(new LinePartitureExpression(token));
}
}
for (Expression e : tree) {
e.interpret(context);
}
System.out.println("Interpretado: " + context.getResult());
}
}