-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParser.js
169 lines (146 loc) · 3.62 KB
/
Parser.js
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
const { TokenTypes, Tokenizer } = require('./Tokenizer');
class Parser {
parse(input) {
this.input = input;
this.tokenizer = new Tokenizer(input);
this.lookahead = this.tokenizer.getNextToken();
return this.Expression();
}
// Expect a particular token, consume/eat it, and move to the next token
eat(tokenType) {
const token = this.lookahead;
if (token == null) {
throw new SyntaxError(`Unexpected end of input, expected "${tokenType}"`);
}
if (token.type !== tokenType) {
throw new SyntaxError(
`Unexpected token: "${token.value}", expected "${tokenType}"`
);
}
// Advance to the next token
this.lookahead = this.tokenizer.getNextToken();
return token;
}
trig(id, value) {
switch (id) {
case 'sin':
return Math.sin(value);
case 'cos':
return Math.cos(value);
case 'tan':
return Math.tan(value);
default:
throw new Error(`Invalid operation: ${id}`);
}
}
BinaryExpression(leftRule, rightRule, operatorType1, operatorType2) {
let left = leftRule();
while (
this.lookahead &&
(this.lookahead.type === operatorType1 ||
this.lookahead.type === operatorType2)
) {
const operator = this.eat(this.lookahead.type).type;
switch (operator) {
case TokenTypes.ADDITION:
left = left + rightRule();
break;
case TokenTypes.SUBTRACTION:
left = left - rightRule();
break;
case TokenTypes.MULTIPLICATION:
left = left * rightRule();
break;
case TokenTypes.DIVISION:
left = left / rightRule();
break;
case TokenTypes.EXPONENTIATION:
left = left ** rightRule();
break;
}
}
return left;
}
/**
* Expression
* = Term (("+" / "-") Term)*
*/
Expression() {
return this.BinaryExpression(
() => this.Term(),
() => this.Term(),
TokenTypes.ADDITION,
TokenTypes.SUBTRACTION
);
}
/**
* Term
* = Factor (("*" / "/") Factor)*
*/
Term() {
return this.BinaryExpression(
() => this.Factor(),
() => this.Factor(),
TokenTypes.MULTIPLICATION,
TokenTypes.DIVISION
);
}
/**
* Factor
* = Primary ("^" Factor)*
*/
Factor() {
return this.BinaryExpression(
() => this.Primary(),
() => this.Factor(),
TokenTypes.EXPONENTIATION
);
}
/**
* Primary
* = ParenthesizedExpression
* / UnaryExpression
* / FunctionExpression
* / NUMBER
*/
Primary() {
if (this.lookahead.type === TokenTypes.PARENTHESIS_LEFT) {
return this.ParenthesizedExpression();
}
if (this.lookahead.type === TokenTypes.SUBTRACTION) {
return this.UnaryExpression();
}
if (this.lookahead.type === TokenTypes.IDENTIFIER) {
return this.FunctionExpression();
}
const token = this.eat(TokenTypes.NUMBER);
return Number(token.value);
}
/**
* ParenthesizedExpression
* = "(" Expression ")"
*/
ParenthesizedExpression() {
this.eat(TokenTypes.PARENTHESIS_LEFT);
const expression = this.Expression();
this.eat(TokenTypes.PARENTHESIS_RIGHT);
return expression;
}
/**
* UnaryExpression
* = "-" Factor
*/
UnaryExpression() {
this.eat(TokenTypes.SUBTRACTION);
return -this.Factor();
}
/**
* FunctionExpression
* = IDENTIFIER ParenthesizedExpression
*/
FunctionExpression() {
const id = this.eat(TokenTypes.IDENTIFIER).value;
return this.trig(id, this.ParenthesizedExpression());
}
}
module.exports = { Parser };