-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathparse.y
More file actions
176 lines (137 loc) · 4.97 KB
/
parse.y
File metadata and controls
176 lines (137 loc) · 4.97 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* parse.y -- grammar for es ($Revision: 1.2 $) */
%{
/* Some yaccs insist on including stdlib.h */
#include "es.h"
#include "syntax.h"
#include "input.h"
%}
/* This seems like the wrong way to go about this? */
%code requires {
typedef struct Input Input;
typedef struct Parser Parser;
typedef struct Here Here;
}
/* older byaccs don't understand this line.
* for them, it should work to replace it with `%pure-parser' */
%define api.pure full
%parse-param {Parser *p}
%lex-param {Parser *p}
%token <str> WORD QWORD
%token LOCAL LET FOR CLOSURE FN
%token <tree> REDIR DUP
%token ANDAND BACKBACK BBFLAT BFLAT EXTRACT CALL COUNT FLAT OROR PRIM SUB
%token NL ENDFILE ERROR
%token MATCH
%left '^' '='
%left MATCH LOCAL LET FOR CLOSURE ')'
%left ANDAND OROR NL
%left '!'
%left <tree> PIPE
%right '$'
%left SUB
%union {
Tree *tree;
char *str;
NodeKind kind;
}
%type <str> keyword
%type <tree> body cmd cmdsa cmdsan comword first fn line word param assign
args binding bindings params nlwords words simple redir sword
cases case
%type <kind> binder
%start es
%%
es : line end { p->tree = $1; YYACCEPT; }
| error end { yyerrok; p->tree = NULL; YYABORT; }
end : NL { if (!readheredocs(p, FALSE)) YYABORT; }
| ENDFILE { if (!readheredocs(p, TRUE)) YYABORT; }
line : cmd { $$ = $1; }
| cmdsa line { $$ = mkseq("%seq", $1, $2); }
body : cmd { $$ = $1; }
| cmdsan body { $$ = mkseq("%seq", $1, $2); }
cmdsa : cmd ';' { $$ = $1; }
| cmd '&' { $$ = prefix("%background", mk(nList, thunkify($1), NULL)); }
cmdsan : cmdsa { $$ = $1; }
| cmd NL { $$ = $1; if (!readheredocs(p, FALSE)) YYABORT; }
cmd : %prec LET { $$ = NULL; }
| simple { $$ = redirect(p, $1); if ($$ == &errornode) YYABORT; }
| redir cmd %prec '!' { $$ = redirect(p, mk(nRedir, $1, $2)); if ($$ == &errornode) YYABORT; }
| first assign { $$ = mk(nAssign, $1, $2); }
| fn { $$ = $1; }
| binder nl '(' bindings ')' nl cmd { $$ = mk($1, $4, $7); }
| cmd ANDAND nl cmd { $$ = mkseq("%and", $1, $4); }
| cmd OROR nl cmd { $$ = mkseq("%or", $1, $4); }
| cmd PIPE nl cmd { $$ = mkpipe($1, $2->u[0].i, $2->u[1].i, $4); }
| '!' caret cmd { $$ = prefix("%not", mk(nList, thunkify($3), NULL)); }
| '~' word words { $$ = mk(nMatch, $2, $3); }
| EXTRACT word words { $$ = mk(nExtract, $2, $3); }
| MATCH word nl '(' cases ')' { $$ = mkmatch($2, $5); }
cases : case { $$ = treecons($1, NULL); }
| cases ';' case { $$ = treeconsend($1, $3); }
| cases NL case { $$ = treeconsend($1, $3); }
case : { $$ = NULL; }
| word first { $$ = mk(nMatch, $1, thunkify($2)); }
simple : first { $$ = treecons($1, NULL); }
| first args { $$ = firstprepend($1, $2); }
args : word { $$ = treecons($1, NULL); }
| redir { $$ = redirappend(NULL, $1); }
| args word { $$ = treeconsend($1, $2); }
| args redir { $$ = redirappend($1, $2); }
redir : DUP { $$ = $1; }
| REDIR word { $$ = mkredir(p, $1, $2); }
bindings: binding { $$ = treecons($1, NULL); }
| bindings ';' binding { $$ = treeconsend($1, $3); }
| bindings NL binding { $$ = treeconsend($1, $3); }
binding : { $$ = NULL; }
| fn { $$ = $1; }
| first assign { $$ = mk(nAssign, $1, $2); }
assign : caret '=' caret words { $$ = $4; }
fn : FN word params '{' body '}' { $$ = fnassign($2, mklambda($3, $5)); }
| FN word { $$ = fnassign($2, NULL); }
first : comword { $$ = $1; }
| first '^' sword { $$ = mk(nConcat, $1, $3); }
sword : comword { $$ = $1; }
| keyword { $$ = mk(nWord, $1); }
word : sword { $$ = $1; }
| word '^' sword { $$ = mk(nConcat, $1, $3); }
comword : param { $$ = $1; }
| '(' nlwords ')' { $$ = $2; }
| '{' body '}' { $$ = thunkify($2); }
| '@' params '{' body '}' { $$ = mklambda($2, $4); }
| '$' sword { $$ = mk(nVar, $2); }
| '$' sword SUB words ')' { $$ = mk(nVarsub, $2, $4); }
| CALL sword { $$ = mk(nCall, $2); }
| COUNT sword { $$ = mk(nCall, prefix("%count", treecons(mk(nVar, $2), NULL))); }
| FLAT sword { $$ = flatten(mk(nVar, $2), " "); }
| PRIM WORD { $$ = mk(nPrim, $2); }
| '`' sword { $$ = backquote(mk(nVar, mk(nWord, "ifs")), $2); }
| BFLAT sword { $$ = flatten(backquote(mk(nVar, mk(nWord, "ifs")), $2), " "); }
| BACKBACK word sword { $$ = backquote($2, $3); }
| BBFLAT word sword { $$ = flatten(backquote($2, $3), " "); }
param : WORD { $$ = mk(nWord, $1); }
| QWORD { $$ = mk(nQword, $1); }
params : { $$ = NULL; }
| params param { $$ = treeconsend($1, $2); }
words : { $$ = NULL; }
| words word { $$ = treeconsend($1, $2); }
nlwords : { $$ = NULL; }
| nlwords word { $$ = treeconsend($1, $2); }
| nlwords NL { $$ = $1; }
nl :
| nl NL
caret : %prec '^'
| '^'
binder : LOCAL { $$ = nLocal; }
| LET { $$ = nLet; }
| FOR { $$ = nFor; }
| CLOSURE { $$ = nClosure; }
keyword : '!' { $$ = "!"; }
| '~' { $$ = "~"; }
| '=' { $$ = "="; }
| EXTRACT { $$ = "~~"; }
| LOCAL { $$ = "local"; }
| LET { $$ = "let"; }
| FOR { $$ = "for"; }
| FN { $$ = "fn"; }
| CLOSURE { $$ = "%closure"; }
| MATCH { $$ = "match"; }