-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexpression-parser.y
More file actions
78 lines (61 loc) · 1.27 KB
/
expression-parser.y
File metadata and controls
78 lines (61 loc) · 1.27 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
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
%{
#include <stdio.h>
int yydebug=1;
int yylex(void);
int i;
#define border printf("\n"); for(i=0; i<=80; ++i) { putchar('-'); } printf("\n");
int yyerror(char *errorMsg);
void success(char *successMsg);
%}
// tokens
%token ID NUMBER STRING_LIT STRING_VAR
%token EQ PLUS MINUS MUL DIVIDE LBRACKET RBRACKET SEMICOLON
%token PRINT KEYWORD
// set precedence
%right EQ
%left PLUS MINUS
%left MUL DIVIDE
%%
/* Parser Grammar */
start: stmt SEMICOLON {
success("This is a valid python expression");
YYACCEPT;
}
;
stmt: assign_arithmetic
| assign_str
| display
;
identifier: ID | keyword {
yyerror("\nkeyword can't be used as a identifier\n");
YYABORT;
}
;
keyword: PRINT | KEYWORD
;
assign_str: identifier EQ strings
;
display: PRINT strings
| PRINT strings MUL NUMBER
| PRINT strings PLUS strings
| PRINT expr
;
strings: STRING_LIT | STRING_VAR
;
assign_arithmetic: identifier EQ expr
;
expr: expr PLUS expr
| expr MINUS expr
| expr MUL expr
| expr DIVIDE expr
| factor
| LBRACKET expr RBRACKET
| SIGN factor
;
SIGN: PLUS
| MINUS
;
factor: identifier
| NUMBER
;
%%