-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.h
66 lines (53 loc) · 1.15 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
/**
* @file parser.c
* @author Antonín Jarolím ([email protected])
* @author Jakub Vlk ([email protected])
* @brief Parser
* Implementation IFJ22 compiler
*
*/
#ifndef STACK_PARSER_H
#define STACK_PARSER_H
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "common.h"
#include "expParse.h"
#include "lex.h"
#include "stack.h"
#include "symtable.h"
#include "semanticActions.h"
#define MAX_STACK_VIEWABLE 100
typedef struct uniqueCounter {
int conditionCount;
int whileCount;
int forCount;
int repUntilCount;
int functionCount;
int untilCount;
} uniqueCounter_t;
typedef enum expectType{
fceExpect,
prttExpect,
varDecExpect,
nothingSpecial
}expectType_t;
typedef enum {
identifSt,
fceParamsSt,
fceReturnsSt
}state_t;
typedef struct parserMemory {
genericStack *PSAStack;
char *stackView[MAX_STACK_VIEWABLE];
bool parseBoolExpression;
// here goes other structures
} ParserMemory;
typedef struct fceExpect{
expectType_t whatToExpect;
state_t currentState;
}fceExpect_t;
int parser();
#endif //STACK_PARSER_H