-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathParser.h
69 lines (58 loc) · 1.59 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
67
68
69
//
// Created by cybex on 2019/05/03.
//
#ifndef COMPILER_PARSER_H
#define COMPILER_PARSER_H
#define ANSI_COLOR_RED "\x1b[31m"
#define ANSI_COLOR_GREEN "\x1b[32m"
#define ANSI_COLOR_RESET "\x1b[0m"
#include <utility>
#include <iostream>
#include <vector>
#include "Scanner.h"
#include "AST/PrimaryExpression_Expression.h"
#include "AST/Command.h"
#include "AST/Program.h"
#include "AST/Declaration.h"
#include "AST/TypeDenoter.h"
#include "AST/VarName.h"
#include "AST/Program.h"
#include "AST/Declaration.h"
#include "AST/TypeDenoter.h"
#include "AST/VarName.h"
#include "AST/DeclarationVar.h"
class Parser {
private:
typedef struct {
VarName *name;
bool defined;
bool isConst;
TypeDenoter *type;
} vardef_t;
std::string sentence;
std::vector<Token> tokenList;
uint curTokenPos;
Token *currentToken = nullptr;
Program *program = nullptr;
std::map<std::string, vardef_t> var_table;
void loadNextToken();
void nextToken(TokenType type);
public:
explicit Parser(std::string sentence);
int compile();
// int checkContext();
virtual ~Parser();
void buildAST();
Command* parseCommand();
Expression* parseExpression();
Declaration* parseDeclaration();
PrimaryExpression* parsePrimaryExpression();
TypeDenoter* parseTypeDenoter();
VarName* parseVarName();
Token * getNextToken(TokenType type);
Operate *parseOperator();
void openScope(vardef_t *vardef);
void closeScope(const std::string& varName);
bool checkVarExists(const std::string& varName);
};
#endif //COMPILER_PARSER_H