8 static struct tree* tree_malloc(int type);
22 %token <str> KW_DISCARD
23 %token <str> KW_PIPE KW_MAIL KW_COPY
24 %token '(' ')' '{' '}' ';'
28 %left <n> EQ NEQ GE LE '<' '>' RE NRE
51 input: /* empty */ { $$ = input_tree = tree_malloc(ST_EMPTY); }
52 | command input { $$ = tree_malloc(ST_BLOCK);
53 $$->pt.block.head = $1;
54 $$->pt.block.tail = $2;
60 command: ';' { $$ = tree_malloc(ST_EMPTY); }
61 | '{' command next '}' {
62 $$ = tree_malloc(ST_BLOCK);
63 $$->pt.block.head = $2;
64 $$->pt.block.tail = $3;
66 | '{' '}' { $$ = tree_malloc(ST_EMPTY); }
68 | ass ';' { $$ = $1; }
69 | arrow ';' { $$ = $1; }
74 next: /* empty */ {$$ = tree_malloc(ST_EMPTY); }
80 cif: KW_IF cond command KW_ELSE command {
81 $$ = tree_malloc(ST_IF);
86 | KW_IF cond command {
87 $$ = tree_malloc(ST_IF);
90 $$->pt.tif.e = tree_malloc(ST_EMPTY);
95 $$ = tree_malloc(ST_COND);
96 $$->pt.cond.left = $2;
97 $$->pt.cond.right = NULL;
99 $$->pt.cond.type = OP_BOOL;
102 $$ = tree_malloc(ST_COND);
103 $$->pt.cond.left = $1;
104 $$->pt.cond.right = $3;
106 $$->pt.cond.type = OP_BOOL;
109 $$ = tree_malloc(ST_COND);
110 $$->pt.cond.left = $1;
111 $$->pt.cond.right = $3;
113 $$->pt.cond.type = OP_BOOL;
116 $$ = tree_malloc(ST_COND);
117 $$->pt.cond.left = $1;
118 $$->pt.cond.right = $3;
120 $$->pt.cond.type = OP_BOOL;
123 | '(' cond ')' { $$ = $2; }
124 | ass_right rop ass_right {
125 $$ = tree_malloc(ST_COND);
126 $$->pt.cond.left = $1;
127 $$->pt.cond.right = $3;
129 $$->pt.cond.type = OP_REL;
145 $$ = tree_malloc(ST_ASS);
147 $$->pt.ass.left = tree_malloc(ST_LEAF);
148 $$->pt.ass.left->pt.leaf.type = L_VAR;
149 $$->pt.ass.left->pt.leaf.value = $1;
151 $$->pt.ass.right = $3;
156 $$ = tree_malloc(ST_LEAF);
157 $$->pt.leaf.type = L_VAR;
158 $$->pt.leaf.value = $1;
161 $$ = tree_malloc(ST_LEAF);
162 $$->pt.leaf.type = L_CONST;
163 $$->pt.leaf.value = $1;
167 arrow: left ARROW right ass_right {
168 $$ = tree_malloc(ST_ARROW);
170 $$->pt.arrow.kw_left = $1;
171 $$->pt.arrow.kw_right = $3;
173 | left ARROW KW_DISCARD { //FIXME: actually left does not make sense here
174 $$ = tree_malloc(ST_ARROW);
175 $$->pt.arrow.s = NULL;
176 $$->pt.arrow.kw_left = NULL;
177 $$->pt.arrow.kw_right = "discard";
181 left: /* empty */ { $$ = NULL;}
182 | KW_COPY { $$ = "copy"; }
186 right: /* empty */ { $$ = NULL; }
187 | KW_PIPE { $$ = "pipe"; }
188 | KW_MAIL { $$ = "mail"; }
192 | ass_right '.' ass_right {
193 $$ = tree_malloc(ST_OP);
196 $$->pt.op.right = $3;
203 tree_malloc(int type)
206 temp = xmalloc(sizeof (struct tree));
213 yyerror (char const *s)
215 fprintf (stderr, "Line %d: %s\n", line, s);