-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.h
66 lines (38 loc) · 1.22 KB
/
parser.h
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
#pragma once
#include <string>
#include <utility>
#include <vector>
#include "Tree.h"
#include "TreeNode.h"
#include "token.h"
/* Grammar:
statement_list: empty | (statement)*
statement_block: LCURLY statementList RCURLY
statement: (expression | assignment | branch | empty);
expression: term ((PLUS | MINUS) term)*
term: factor ((MUL|DIV) factor)*
factor: value (^ value)*
value: PLUS expression | MINUS expression | NUMBER | LPAREN expression RPAREN | variable
variable: ID
assignment: variable ASSIGN expression
branch: IF LPAREN expression RPAREN statement_block (ELSE statement_block)
*/
class Parser {
std::vector<Token *> tokens;
unsigned offset = 0;
void eatToken(Token::Type type);
Operator *eatOperator(int precedence);
StatementListNode *parseStatementList();
StatementListNode *parseStatementBlock();
TreeNode *parseStatement();
ExpressionNode *parseExpression();
ExpressionNode *parseTerm();
ExpressionNode *parseFactor();
ExpressionNode *parseValue();
VariableNode *parseVariable();
AssignmentNode *parseAssignment();
BranchNode *parseBranch();
public:
explicit Parser(std::vector<Token *> tokens) : tokens(std::move(tokens)) {}
Tree parse();
};