-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParser.h
More file actions
39 lines (32 loc) · 1.01 KB
/
Copy pathParser.h
File metadata and controls
39 lines (32 loc) · 1.01 KB
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
#pragma once
#include "Scanner.h"
#include "Symbol.h"
class ParserClass{
public:
ParserClass(ScannerClass * sc, SymbolTableClass * st);
StartNode * Start();
ProgramNode * Program();
BlockNode * Block();
StatementGroupNode * StatementGroup();
StatementNode * Statement();
DeclarationStatementNode * DeclarationStatement();
AssignmentStatementNode * AssignmentStatememt();
IfStatementNode * IfStatement();
IfStatementNode * ElseStatement();
WhileStatementNode * WhileStatement();
CoutStatementNode * CoutStatement();
TokenClass Match(TokenType expectedType);
ExpressionNode * Expression();
ExpressionNode * LogicalOr();
ExpressionNode * LogicalAnd();
ExpressionNode * Relational();
ExpressionNode * Exponent();
ExpressionNode * PlusMinus();
ExpressionNode * TimesDivide();
ExpressionNode * Factor();
IdentifierNode * Identifier();
IntegerNode * Integer();
private:
ScannerClass * mScanner;
SymbolTableClass * mSymbolTable;
};