OILS / _gen / frontend / consts.cc View on Github | oilshell.org

1742 lines, 1649 significant
1#include "_gen/frontend/consts.h"
2
3using id_kind_asdl::Id;
4using id_kind_asdl::Kind;
5using types_asdl::redir_arg_type_e;
6using types_asdl::bool_arg_type_e;
7using option_asdl::builtin_t;
8
9namespace consts {
10
11int NO_INDEX = 0; // duplicated from frontend/consts.py
12
13GLOBAL_STR(gVersion, "0.22.0");
14
15GLOBAL_LIST(STRICT_ALL, int, 9, {28 COMMA 29 COMMA 30 COMMA 31 COMMA 32 COMMA 36 COMMA 33 COMMA 35 COMMA 34});
16GLOBAL_LIST(YSH_UPGRADE, int, 23, {48 COMMA 47 COMMA 1 COMMA 4 COMMA 2 COMMA 5 COMMA 37 COMMA 40 COMMA 41 COMMA 42 COMMA 39 COMMA 43 COMMA 38 COMMA 45 COMMA 44 COMMA 3 COMMA 49 COMMA 53 COMMA 52 COMMA 46 COMMA 6 COMMA 51 COMMA 50});
17GLOBAL_LIST(YSH_ALL, int, 45, {48 COMMA 47 COMMA 1 COMMA 66 COMMA 4 COMMA 2 COMMA 5 COMMA 37 COMMA 54 COMMA 55 COMMA 56 COMMA 62 COMMA 40 COMMA 41 COMMA 61 COMMA 57 COMMA 60 COMMA 42 COMMA 39 COMMA 58 COMMA 43 COMMA 38 COMMA 59 COMMA 45 COMMA 44 COMMA 3 COMMA 49 COMMA 53 COMMA 52 COMMA 63 COMMA 64 COMMA 65 COMMA 46 COMMA 28 COMMA 29 COMMA 30 COMMA 31 COMMA 32 COMMA 36 COMMA 33 COMMA 35 COMMA 34 COMMA 6 COMMA 51 COMMA 50});
18GLOBAL_LIST(DEFAULT_TRUE, int, 16, {21 COMMA 22 COMMA 47 COMMA 23 COMMA 66 COMMA 16 COMMA 55 COMMA 56 COMMA 62 COMMA 61 COMMA 57 COMMA 60 COMMA 58 COMMA 59 COMMA 53 COMMA 51});
19GLOBAL_LIST(PARSE_OPTION_NUMS, int, 19, {66 COMMA 37 COMMA 54 COMMA 55 COMMA 56 COMMA 62 COMMA 40 COMMA 41 COMMA 61 COMMA 57 COMMA 60 COMMA 42 COMMA 39 COMMA 58 COMMA 43 COMMA 38 COMMA 59 COMMA 45 COMMA 44});
20GLOBAL_LIST(SHOPT_OPTION_NUMS, int, 93, {21 COMMA 22 COMMA 27 COMMA 26 COMMA 25 COMMA 72 COMMA 73 COMMA 74 COMMA 75 COMMA 76 COMMA 77 COMMA 78 COMMA 71 COMMA 48 COMMA 79 COMMA 47 COMMA 80 COMMA 81 COMMA 82 COMMA 23 COMMA 20 COMMA 83 COMMA 66 COMMA 84 COMMA 18 COMMA 85 COMMA 17 COMMA 86 COMMA 87 COMMA 88 COMMA 89 COMMA 69 COMMA 90 COMMA 91 COMMA 70 COMMA 92 COMMA 4 COMMA 93 COMMA 67 COMMA 94 COMMA 95 COMMA 96 COMMA 97 COMMA 98 COMMA 99 COMMA 100 COMMA 19 COMMA 5 COMMA 37 COMMA 54 COMMA 55 COMMA 56 COMMA 62 COMMA 40 COMMA 41 COMMA 61 COMMA 57 COMMA 60 COMMA 42 COMMA 39 COMMA 58 COMMA 43 COMMA 38 COMMA 59 COMMA 45 COMMA 44 COMMA 49 COMMA 68 COMMA 101 COMMA 102 COMMA 24 COMMA 53 COMMA 103 COMMA 104 COMMA 52 COMMA 63 COMMA 64 COMMA 65 COMMA 46 COMMA 105 COMMA 28 COMMA 29 COMMA 30 COMMA 31 COMMA 32 COMMA 36 COMMA 33 COMMA 35 COMMA 34 COMMA 6 COMMA 106 COMMA 51 COMMA 50});
21GLOBAL_LIST(SET_OPTION_NUMS, int, 12, {14 COMMA 1 COMMA 16 COMMA 11 COMMA 7 COMMA 10 COMMA 2 COMMA 3 COMMA 12 COMMA 9 COMMA 13 COMMA 8});
22GLOBAL_LIST(VISIBLE_SHOPT_NUMS, int, 53, {21 COMMA 22 COMMA 27 COMMA 26 COMMA 25 COMMA 48 COMMA 47 COMMA 23 COMMA 20 COMMA 66 COMMA 18 COMMA 17 COMMA 4 COMMA 19 COMMA 5 COMMA 37 COMMA 54 COMMA 55 COMMA 56 COMMA 62 COMMA 40 COMMA 41 COMMA 61 COMMA 57 COMMA 60 COMMA 42 COMMA 39 COMMA 58 COMMA 43 COMMA 38 COMMA 59 COMMA 45 COMMA 44 COMMA 49 COMMA 24 COMMA 53 COMMA 52 COMMA 63 COMMA 64 COMMA 65 COMMA 46 COMMA 28 COMMA 29 COMMA 30 COMMA 31 COMMA 32 COMMA 36 COMMA 33 COMMA 35 COMMA 34 COMMA 6 COMMA 51 COMMA 50});
23
24int RedirDefaultFd(id_kind_asdl::Id_t id) {
25 // relies on "switch lowering"
26 switch (id) {
27
28 case Id::Redir_Less: return 0;
29 case Id::Redir_Great: return 1;
30 case Id::Redir_DLess: return 0;
31 case Id::Redir_TLess: return 0;
32 case Id::Redir_DGreat: return 1;
33 case Id::Redir_GreatAnd: return 1;
34 case Id::Redir_LessAnd: return 0;
35 case Id::Redir_DLessDash: return 0;
36 case Id::Redir_LessGreat: return 0;
37 case Id::Redir_Clobber: return 1;
38 case Id::Redir_AndGreat: return 1;
39 case Id::Redir_AndDGreat: return 1;
40 }
41 FAIL(kShouldNotGetHere);
42}
43
44types_asdl::redir_arg_type_t RedirArgType(id_kind_asdl::Id_t id) {
45 // relies on "switch lowering"
46 switch (id) {
47
48 case Id::Redir_Less: return redir_arg_type_e::Path;
49 case Id::Redir_Great: return redir_arg_type_e::Path;
50 case Id::Redir_TLess: return redir_arg_type_e::Here;
51 case Id::Redir_DGreat: return redir_arg_type_e::Path;
52 case Id::Redir_GreatAnd: return redir_arg_type_e::Desc;
53 case Id::Redir_LessAnd: return redir_arg_type_e::Desc;
54 case Id::Redir_LessGreat: return redir_arg_type_e::Path;
55 case Id::Redir_Clobber: return redir_arg_type_e::Path;
56 case Id::Redir_AndGreat: return redir_arg_type_e::Path;
57 case Id::Redir_AndDGreat: return redir_arg_type_e::Path;
58 }
59 FAIL(kShouldNotGetHere);
60}
61
62types_asdl::bool_arg_type_t BoolArgType(id_kind_asdl::Id_t id) {
63 // relies on "switch lowering"
64 switch (id) {
65
66 case Id::Op_DAmp: return bool_arg_type_e::Undefined;
67 case Id::Op_DPipe: return bool_arg_type_e::Undefined;
68 case Id::Op_Less: return bool_arg_type_e::Str;
69 case Id::Op_Great: return bool_arg_type_e::Str;
70 case Id::KW_Bang: return bool_arg_type_e::Undefined;
71 case Id::BoolUnary_z: return bool_arg_type_e::Str;
72 case Id::BoolUnary_n: return bool_arg_type_e::Str;
73 case Id::BoolUnary_o: return bool_arg_type_e::Other;
74 case Id::BoolUnary_t: return bool_arg_type_e::Other;
75 case Id::BoolUnary_v: return bool_arg_type_e::Other;
76 case Id::BoolUnary_R: return bool_arg_type_e::Other;
77 case Id::BoolUnary_a: return bool_arg_type_e::Path;
78 case Id::BoolUnary_b: return bool_arg_type_e::Path;
79 case Id::BoolUnary_c: return bool_arg_type_e::Path;
80 case Id::BoolUnary_d: return bool_arg_type_e::Path;
81 case Id::BoolUnary_e: return bool_arg_type_e::Path;
82 case Id::BoolUnary_f: return bool_arg_type_e::Path;
83 case Id::BoolUnary_g: return bool_arg_type_e::Path;
84 case Id::BoolUnary_h: return bool_arg_type_e::Path;
85 case Id::BoolUnary_k: return bool_arg_type_e::Path;
86 case Id::BoolUnary_L: return bool_arg_type_e::Path;
87 case Id::BoolUnary_p: return bool_arg_type_e::Path;
88 case Id::BoolUnary_r: return bool_arg_type_e::Path;
89 case Id::BoolUnary_s: return bool_arg_type_e::Path;
90 case Id::BoolUnary_S: return bool_arg_type_e::Path;
91 case Id::BoolUnary_u: return bool_arg_type_e::Path;
92 case Id::BoolUnary_w: return bool_arg_type_e::Path;
93 case Id::BoolUnary_x: return bool_arg_type_e::Path;
94 case Id::BoolUnary_O: return bool_arg_type_e::Path;
95 case Id::BoolUnary_G: return bool_arg_type_e::Path;
96 case Id::BoolUnary_N: return bool_arg_type_e::Path;
97 case Id::BoolBinary_GlobEqual: return bool_arg_type_e::Str;
98 case Id::BoolBinary_GlobDEqual: return bool_arg_type_e::Str;
99 case Id::BoolBinary_GlobNEqual: return bool_arg_type_e::Str;
100 case Id::BoolBinary_EqualTilde: return bool_arg_type_e::Str;
101 case Id::BoolBinary_ef: return bool_arg_type_e::Path;
102 case Id::BoolBinary_nt: return bool_arg_type_e::Path;
103 case Id::BoolBinary_ot: return bool_arg_type_e::Path;
104 case Id::BoolBinary_eq: return bool_arg_type_e::Int;
105 case Id::BoolBinary_ne: return bool_arg_type_e::Int;
106 case Id::BoolBinary_gt: return bool_arg_type_e::Int;
107 case Id::BoolBinary_ge: return bool_arg_type_e::Int;
108 case Id::BoolBinary_lt: return bool_arg_type_e::Int;
109 case Id::BoolBinary_le: return bool_arg_type_e::Int;
110 case Id::BoolBinary_Equal: return bool_arg_type_e::Str;
111 case Id::BoolBinary_DEqual: return bool_arg_type_e::Str;
112 case Id::BoolBinary_NEqual: return bool_arg_type_e::Str;
113 }
114 FAIL(kShouldNotGetHere);
115}
116
117Kind GetKind(id_kind_asdl::Id_t id) {
118 // relies on "switch lowering"
119 switch (id) {
120
121 case Id::Word_Compound: return Kind::Word;
122 case Id::Arith_Semi: return Kind::Arith;
123 case Id::Arith_Comma: return Kind::Arith;
124 case Id::Arith_Plus: return Kind::Arith;
125 case Id::Arith_Minus: return Kind::Arith;
126 case Id::Arith_Star: return Kind::Arith;
127 case Id::Arith_Slash: return Kind::Arith;
128 case Id::Arith_Percent: return Kind::Arith;
129 case Id::Arith_DPlus: return Kind::Arith;
130 case Id::Arith_DMinus: return Kind::Arith;
131 case Id::Arith_DStar: return Kind::Arith;
132 case Id::Arith_LParen: return Kind::Arith;
133 case Id::Arith_RParen: return Kind::Arith;
134 case Id::Arith_LBracket: return Kind::Arith;
135 case Id::Arith_RBracket: return Kind::Arith;
136 case Id::Arith_RBrace: return Kind::Arith;
137 case Id::Arith_QMark: return Kind::Arith;
138 case Id::Arith_Colon: return Kind::Arith;
139 case Id::Arith_LessEqual: return Kind::Arith;
140 case Id::Arith_Less: return Kind::Arith;
141 case Id::Arith_GreatEqual: return Kind::Arith;
142 case Id::Arith_Great: return Kind::Arith;
143 case Id::Arith_DEqual: return Kind::Arith;
144 case Id::Arith_NEqual: return Kind::Arith;
145 case Id::Arith_DAmp: return Kind::Arith;
146 case Id::Arith_DPipe: return Kind::Arith;
147 case Id::Arith_Bang: return Kind::Arith;
148 case Id::Arith_DGreat: return Kind::Arith;
149 case Id::Arith_DLess: return Kind::Arith;
150 case Id::Arith_Amp: return Kind::Arith;
151 case Id::Arith_Pipe: return Kind::Arith;
152 case Id::Arith_Caret: return Kind::Arith;
153 case Id::Arith_Tilde: return Kind::Arith;
154 case Id::Arith_Equal: return Kind::Arith;
155 case Id::Arith_PlusEqual: return Kind::Arith;
156 case Id::Arith_MinusEqual: return Kind::Arith;
157 case Id::Arith_StarEqual: return Kind::Arith;
158 case Id::Arith_SlashEqual: return Kind::Arith;
159 case Id::Arith_PercentEqual: return Kind::Arith;
160 case Id::Arith_DGreatEqual: return Kind::Arith;
161 case Id::Arith_DLessEqual: return Kind::Arith;
162 case Id::Arith_AmpEqual: return Kind::Arith;
163 case Id::Arith_CaretEqual: return Kind::Arith;
164 case Id::Arith_PipeEqual: return Kind::Arith;
165 case Id::Eof_Real: return Kind::Eof;
166 case Id::Eof_RParen: return Kind::Eof;
167 case Id::Eof_Backtick: return Kind::Eof;
168 case Id::Undefined_Tok: return Kind::Undefined;
169 case Id::Unknown_Tok: return Kind::Unknown;
170 case Id::Unknown_Backslash: return Kind::Unknown;
171 case Id::Unknown_DEqual: return Kind::Unknown;
172 case Id::Eol_Tok: return Kind::Eol;
173 case Id::Ignored_LineCont: return Kind::Ignored;
174 case Id::Ignored_Space: return Kind::Ignored;
175 case Id::Ignored_Comment: return Kind::Ignored;
176 case Id::Ignored_Newline: return Kind::Ignored;
177 case Id::WS_Space: return Kind::WS;
178 case Id::Lit_Chars: return Kind::Lit;
179 case Id::Lit_CharsWithoutPrefix: return Kind::Lit;
180 case Id::Lit_VarLike: return Kind::Lit;
181 case Id::Lit_ArrayLhsOpen: return Kind::Lit;
182 case Id::Lit_ArrayLhsClose: return Kind::Lit;
183 case Id::Lit_Splice: return Kind::Lit;
184 case Id::Lit_AtLBracket: return Kind::Lit;
185 case Id::Lit_AtLBraceDot: return Kind::Lit;
186 case Id::Lit_Other: return Kind::Lit;
187 case Id::Lit_EscapedChar: return Kind::Lit;
188 case Id::Lit_LBracket: return Kind::Lit;
189 case Id::Lit_RBracket: return Kind::Lit;
190 case Id::Lit_Star: return Kind::Lit;
191 case Id::Lit_QMark: return Kind::Lit;
192 case Id::Lit_LBrace: return Kind::Lit;
193 case Id::Lit_RBrace: return Kind::Lit;
194 case Id::Lit_Comma: return Kind::Lit;
195 case Id::Lit_Equals: return Kind::Lit;
196 case Id::Lit_Dollar: return Kind::Lit;
197 case Id::Lit_DRightBracket: return Kind::Lit;
198 case Id::Lit_Tilde: return Kind::Lit;
199 case Id::Lit_Pound: return Kind::Lit;
200 case Id::Lit_TPound: return Kind::Lit;
201 case Id::Lit_TDot: return Kind::Lit;
202 case Id::Lit_Slash: return Kind::Lit;
203 case Id::Lit_Percent: return Kind::Lit;
204 case Id::Lit_Colon: return Kind::Lit;
205 case Id::Lit_Digits: return Kind::Lit;
206 case Id::Lit_At: return Kind::Lit;
207 case Id::Lit_ArithVarLike: return Kind::Lit;
208 case Id::Lit_BadBackslash: return Kind::Lit;
209 case Id::Lit_CompDummy: return Kind::Lit;
210 case Id::Backtick_Right: return Kind::Backtick;
211 case Id::Backtick_Quoted: return Kind::Backtick;
212 case Id::Backtick_DoubleQuote: return Kind::Backtick;
213 case Id::Backtick_Other: return Kind::Backtick;
214 case Id::History_Op: return Kind::History;
215 case Id::History_Num: return Kind::History;
216 case Id::History_Search: return Kind::History;
217 case Id::History_Other: return Kind::History;
218 case Id::Op_Newline: return Kind::Op;
219 case Id::Op_Amp: return Kind::Op;
220 case Id::Op_Pipe: return Kind::Op;
221 case Id::Op_PipeAmp: return Kind::Op;
222 case Id::Op_DAmp: return Kind::Op;
223 case Id::Op_DPipe: return Kind::Op;
224 case Id::Op_Semi: return Kind::Op;
225 case Id::Op_DSemi: return Kind::Op;
226 case Id::Op_SemiAmp: return Kind::Op;
227 case Id::Op_DSemiAmp: return Kind::Op;
228 case Id::Op_LParen: return Kind::Op;
229 case Id::Op_RParen: return Kind::Op;
230 case Id::Op_DLeftParen: return Kind::Op;
231 case Id::Op_DRightParen: return Kind::Op;
232 case Id::Op_Less: return Kind::Op;
233 case Id::Op_Great: return Kind::Op;
234 case Id::Op_Bang: return Kind::Op;
235 case Id::Op_LBracket: return Kind::Op;
236 case Id::Op_RBracket: return Kind::Op;
237 case Id::Op_LBrace: return Kind::Op;
238 case Id::Op_RBrace: return Kind::Op;
239 case Id::Expr_Reserved: return Kind::Expr;
240 case Id::Expr_Symbol: return Kind::Expr;
241 case Id::Expr_Name: return Kind::Expr;
242 case Id::Expr_DecInt: return Kind::Expr;
243 case Id::Expr_BinInt: return Kind::Expr;
244 case Id::Expr_OctInt: return Kind::Expr;
245 case Id::Expr_HexInt: return Kind::Expr;
246 case Id::Expr_Float: return Kind::Expr;
247 case Id::Expr_Bang: return Kind::Expr;
248 case Id::Expr_Dot: return Kind::Expr;
249 case Id::Expr_DDot: return Kind::Expr;
250 case Id::Expr_Colon: return Kind::Expr;
251 case Id::Expr_RArrow: return Kind::Expr;
252 case Id::Expr_RDArrow: return Kind::Expr;
253 case Id::Expr_DSlash: return Kind::Expr;
254 case Id::Expr_TEqual: return Kind::Expr;
255 case Id::Expr_NotDEqual: return Kind::Expr;
256 case Id::Expr_TildeDEqual: return Kind::Expr;
257 case Id::Expr_At: return Kind::Expr;
258 case Id::Expr_DoubleAt: return Kind::Expr;
259 case Id::Expr_Ellipsis: return Kind::Expr;
260 case Id::Expr_Dollar: return Kind::Expr;
261 case Id::Expr_NotTilde: return Kind::Expr;
262 case Id::Expr_DTilde: return Kind::Expr;
263 case Id::Expr_NotDTilde: return Kind::Expr;
264 case Id::Expr_DStarEqual: return Kind::Expr;
265 case Id::Expr_DSlashEqual: return Kind::Expr;
266 case Id::Expr_CastedDummy: return Kind::Expr;
267 case Id::Expr_Null: return Kind::Expr;
268 case Id::Expr_True: return Kind::Expr;
269 case Id::Expr_False: return Kind::Expr;
270 case Id::Expr_And: return Kind::Expr;
271 case Id::Expr_Or: return Kind::Expr;
272 case Id::Expr_Not: return Kind::Expr;
273 case Id::Expr_For: return Kind::Expr;
274 case Id::Expr_Is: return Kind::Expr;
275 case Id::Expr_In: return Kind::Expr;
276 case Id::Expr_If: return Kind::Expr;
277 case Id::Expr_Else: return Kind::Expr;
278 case Id::Expr_Func: return Kind::Expr;
279 case Id::Expr_Capture: return Kind::Expr;
280 case Id::Expr_As: return Kind::Expr;
281 case Id::Char_OneChar: return Kind::Char;
282 case Id::Char_Stop: return Kind::Char;
283 case Id::Char_Hex: return Kind::Char;
284 case Id::Char_YHex: return Kind::Char;
285 case Id::Char_Octal3: return Kind::Char;
286 case Id::Char_Octal4: return Kind::Char;
287 case Id::Char_Unicode4: return Kind::Char;
288 case Id::Char_SurrogatePair: return Kind::Char;
289 case Id::Char_Unicode8: return Kind::Char;
290 case Id::Char_UBraced: return Kind::Char;
291 case Id::Char_Pound: return Kind::Char;
292 case Id::Char_AsciiControl: return Kind::Char;
293 case Id::BashRegex_LParen: return Kind::BashRegex;
294 case Id::BashRegex_AllowedInParens: return Kind::BashRegex;
295 case Id::Eggex_Start: return Kind::Eggex;
296 case Id::Eggex_End: return Kind::Eggex;
297 case Id::Eggex_Dot: return Kind::Eggex;
298 case Id::Redir_Less: return Kind::Redir;
299 case Id::Redir_Great: return Kind::Redir;
300 case Id::Redir_DLess: return Kind::Redir;
301 case Id::Redir_TLess: return Kind::Redir;
302 case Id::Redir_DGreat: return Kind::Redir;
303 case Id::Redir_GreatAnd: return Kind::Redir;
304 case Id::Redir_LessAnd: return Kind::Redir;
305 case Id::Redir_DLessDash: return Kind::Redir;
306 case Id::Redir_LessGreat: return Kind::Redir;
307 case Id::Redir_Clobber: return Kind::Redir;
308 case Id::Redir_AndGreat: return Kind::Redir;
309 case Id::Redir_AndDGreat: return Kind::Redir;
310 case Id::Left_DoubleQuote: return Kind::Left;
311 case Id::Left_JDoubleQuote: return Kind::Left;
312 case Id::Left_SingleQuote: return Kind::Left;
313 case Id::Left_DollarSingleQuote: return Kind::Left;
314 case Id::Left_RSingleQuote: return Kind::Left;
315 case Id::Left_USingleQuote: return Kind::Left;
316 case Id::Left_BSingleQuote: return Kind::Left;
317 case Id::Left_TDoubleQuote: return Kind::Left;
318 case Id::Left_DollarTDoubleQuote: return Kind::Left;
319 case Id::Left_TSingleQuote: return Kind::Left;
320 case Id::Left_RTSingleQuote: return Kind::Left;
321 case Id::Left_UTSingleQuote: return Kind::Left;
322 case Id::Left_BTSingleQuote: return Kind::Left;
323 case Id::Left_Backtick: return Kind::Left;
324 case Id::Left_DollarParen: return Kind::Left;
325 case Id::Left_DollarBrace: return Kind::Left;
326 case Id::Left_DollarBraceZsh: return Kind::Left;
327 case Id::Left_DollarDParen: return Kind::Left;
328 case Id::Left_DollarBracket: return Kind::Left;
329 case Id::Left_DollarDoubleQuote: return Kind::Left;
330 case Id::Left_ProcSubIn: return Kind::Left;
331 case Id::Left_ProcSubOut: return Kind::Left;
332 case Id::Left_AtParen: return Kind::Left;
333 case Id::Left_CaretParen: return Kind::Left;
334 case Id::Left_CaretBracket: return Kind::Left;
335 case Id::Left_CaretBrace: return Kind::Left;
336 case Id::Left_CaretDoubleQuote: return Kind::Left;
337 case Id::Left_ColonPipe: return Kind::Left;
338 case Id::Left_PercentParen: return Kind::Left;
339 case Id::Right_DoubleQuote: return Kind::Right;
340 case Id::Right_SingleQuote: return Kind::Right;
341 case Id::Right_Backtick: return Kind::Right;
342 case Id::Right_DollarBrace: return Kind::Right;
343 case Id::Right_DollarDParen: return Kind::Right;
344 case Id::Right_DollarDoubleQuote: return Kind::Right;
345 case Id::Right_DollarSingleQuote: return Kind::Right;
346 case Id::Right_Subshell: return Kind::Right;
347 case Id::Right_ShFunction: return Kind::Right;
348 case Id::Right_CasePat: return Kind::Right;
349 case Id::Right_ShArrayLiteral: return Kind::Right;
350 case Id::Right_ExtGlob: return Kind::Right;
351 case Id::Right_BashRegexGroup: return Kind::Right;
352 case Id::Right_BlockLiteral: return Kind::Right;
353 case Id::ExtGlob_Comma: return Kind::ExtGlob;
354 case Id::ExtGlob_At: return Kind::ExtGlob;
355 case Id::ExtGlob_Star: return Kind::ExtGlob;
356 case Id::ExtGlob_Plus: return Kind::ExtGlob;
357 case Id::ExtGlob_QMark: return Kind::ExtGlob;
358 case Id::ExtGlob_Bang: return Kind::ExtGlob;
359 case Id::VSub_DollarName: return Kind::VSub;
360 case Id::VSub_Name: return Kind::VSub;
361 case Id::VSub_Number: return Kind::VSub;
362 case Id::VSub_Bang: return Kind::VSub;
363 case Id::VSub_At: return Kind::VSub;
364 case Id::VSub_Pound: return Kind::VSub;
365 case Id::VSub_Dollar: return Kind::VSub;
366 case Id::VSub_Star: return Kind::VSub;
367 case Id::VSub_Hyphen: return Kind::VSub;
368 case Id::VSub_QMark: return Kind::VSub;
369 case Id::VSub_Dot: return Kind::VSub;
370 case Id::VTest_ColonHyphen: return Kind::VTest;
371 case Id::VTest_Hyphen: return Kind::VTest;
372 case Id::VTest_ColonEquals: return Kind::VTest;
373 case Id::VTest_Equals: return Kind::VTest;
374 case Id::VTest_ColonQMark: return Kind::VTest;
375 case Id::VTest_QMark: return Kind::VTest;
376 case Id::VTest_ColonPlus: return Kind::VTest;
377 case Id::VTest_Plus: return Kind::VTest;
378 case Id::VOp0_Q: return Kind::VOp0;
379 case Id::VOp0_E: return Kind::VOp0;
380 case Id::VOp0_P: return Kind::VOp0;
381 case Id::VOp0_A: return Kind::VOp0;
382 case Id::VOp0_a: return Kind::VOp0;
383 case Id::VOp1_Percent: return Kind::VOp1;
384 case Id::VOp1_DPercent: return Kind::VOp1;
385 case Id::VOp1_Pound: return Kind::VOp1;
386 case Id::VOp1_DPound: return Kind::VOp1;
387 case Id::VOp1_Caret: return Kind::VOp1;
388 case Id::VOp1_DCaret: return Kind::VOp1;
389 case Id::VOp1_Comma: return Kind::VOp1;
390 case Id::VOp1_DComma: return Kind::VOp1;
391 case Id::VOpYsh_Pipe: return Kind::VOpYsh;
392 case Id::VOpYsh_Space: return Kind::VOpYsh;
393 case Id::VOp2_Slash: return Kind::VOp2;
394 case Id::VOp2_Colon: return Kind::VOp2;
395 case Id::VOp2_LBracket: return Kind::VOp2;
396 case Id::VOp2_RBracket: return Kind::VOp2;
397 case Id::VOp3_At: return Kind::VOp3;
398 case Id::VOp3_Star: return Kind::VOp3;
399 case Id::Node_PostDPlus: return Kind::Node;
400 case Id::Node_PostDMinus: return Kind::Node;
401 case Id::Node_UnaryPlus: return Kind::Node;
402 case Id::Node_UnaryMinus: return Kind::Node;
403 case Id::Node_NotIn: return Kind::Node;
404 case Id::Node_IsNot: return Kind::Node;
405 case Id::KW_DLeftBracket: return Kind::KW;
406 case Id::KW_Bang: return Kind::KW;
407 case Id::KW_For: return Kind::KW;
408 case Id::KW_While: return Kind::KW;
409 case Id::KW_Until: return Kind::KW;
410 case Id::KW_Do: return Kind::KW;
411 case Id::KW_Done: return Kind::KW;
412 case Id::KW_In: return Kind::KW;
413 case Id::KW_Case: return Kind::KW;
414 case Id::KW_Esac: return Kind::KW;
415 case Id::KW_If: return Kind::KW;
416 case Id::KW_Fi: return Kind::KW;
417 case Id::KW_Then: return Kind::KW;
418 case Id::KW_Else: return Kind::KW;
419 case Id::KW_Elif: return Kind::KW;
420 case Id::KW_Function: return Kind::KW;
421 case Id::KW_Time: return Kind::KW;
422 case Id::KW_Const: return Kind::KW;
423 case Id::KW_Var: return Kind::KW;
424 case Id::KW_SetVar: return Kind::KW;
425 case Id::KW_SetGlobal: return Kind::KW;
426 case Id::KW_Call: return Kind::KW;
427 case Id::KW_Proc: return Kind::KW;
428 case Id::KW_Typed: return Kind::KW;
429 case Id::KW_Func: return Kind::KW;
430 case Id::ControlFlow_Break: return Kind::ControlFlow;
431 case Id::ControlFlow_Continue: return Kind::ControlFlow;
432 case Id::ControlFlow_Return: return Kind::ControlFlow;
433 case Id::ControlFlow_Exit: return Kind::ControlFlow;
434 case Id::LookAhead_FuncParens: return Kind::LookAhead;
435 case Id::Glob_LBracket: return Kind::Glob;
436 case Id::Glob_RBracket: return Kind::Glob;
437 case Id::Glob_Star: return Kind::Glob;
438 case Id::Glob_QMark: return Kind::Glob;
439 case Id::Glob_Bang: return Kind::Glob;
440 case Id::Glob_Caret: return Kind::Glob;
441 case Id::Glob_EscapedChar: return Kind::Glob;
442 case Id::Glob_BadBackslash: return Kind::Glob;
443 case Id::Glob_CleanLiterals: return Kind::Glob;
444 case Id::Glob_OtherLiteral: return Kind::Glob;
445 case Id::Format_EscapedPercent: return Kind::Format;
446 case Id::Format_Percent: return Kind::Format;
447 case Id::Format_Flag: return Kind::Format;
448 case Id::Format_Num: return Kind::Format;
449 case Id::Format_Dot: return Kind::Format;
450 case Id::Format_Type: return Kind::Format;
451 case Id::Format_Star: return Kind::Format;
452 case Id::Format_Time: return Kind::Format;
453 case Id::Format_Zero: return Kind::Format;
454 case Id::PS_Subst: return Kind::PS;
455 case Id::PS_Octal3: return Kind::PS;
456 case Id::PS_LBrace: return Kind::PS;
457 case Id::PS_RBrace: return Kind::PS;
458 case Id::PS_Literals: return Kind::PS;
459 case Id::PS_BadBackslash: return Kind::PS;
460 case Id::Range_Int: return Kind::Range;
461 case Id::Range_Char: return Kind::Range;
462 case Id::Range_Dots: return Kind::Range;
463 case Id::Range_Other: return Kind::Range;
464 case Id::J8_LBracket: return Kind::J8;
465 case Id::J8_RBracket: return Kind::J8;
466 case Id::J8_LBrace: return Kind::J8;
467 case Id::J8_RBrace: return Kind::J8;
468 case Id::J8_Comma: return Kind::J8;
469 case Id::J8_Colon: return Kind::J8;
470 case Id::J8_Null: return Kind::J8;
471 case Id::J8_Bool: return Kind::J8;
472 case Id::J8_Int: return Kind::J8;
473 case Id::J8_Float: return Kind::J8;
474 case Id::J8_String: return Kind::J8;
475 case Id::J8_Identifier: return Kind::J8;
476 case Id::J8_Newline: return Kind::J8;
477 case Id::J8_Tab: return Kind::J8;
478 case Id::J8_LParen: return Kind::J8;
479 case Id::J8_RParen: return Kind::J8;
480 case Id::J8_Operator: return Kind::J8;
481 case Id::BoolUnary_z: return Kind::BoolUnary;
482 case Id::BoolUnary_n: return Kind::BoolUnary;
483 case Id::BoolUnary_o: return Kind::BoolUnary;
484 case Id::BoolUnary_t: return Kind::BoolUnary;
485 case Id::BoolUnary_v: return Kind::BoolUnary;
486 case Id::BoolUnary_R: return Kind::BoolUnary;
487 case Id::BoolUnary_a: return Kind::BoolUnary;
488 case Id::BoolUnary_b: return Kind::BoolUnary;
489 case Id::BoolUnary_c: return Kind::BoolUnary;
490 case Id::BoolUnary_d: return Kind::BoolUnary;
491 case Id::BoolUnary_e: return Kind::BoolUnary;
492 case Id::BoolUnary_f: return Kind::BoolUnary;
493 case Id::BoolUnary_g: return Kind::BoolUnary;
494 case Id::BoolUnary_h: return Kind::BoolUnary;
495 case Id::BoolUnary_k: return Kind::BoolUnary;
496 case Id::BoolUnary_L: return Kind::BoolUnary;
497 case Id::BoolUnary_p: return Kind::BoolUnary;
498 case Id::BoolUnary_r: return Kind::BoolUnary;
499 case Id::BoolUnary_s: return Kind::BoolUnary;
500 case Id::BoolUnary_S: return Kind::BoolUnary;
501 case Id::BoolUnary_u: return Kind::BoolUnary;
502 case Id::BoolUnary_w: return Kind::BoolUnary;
503 case Id::BoolUnary_x: return Kind::BoolUnary;
504 case Id::BoolUnary_O: return Kind::BoolUnary;
505 case Id::BoolUnary_G: return Kind::BoolUnary;
506 case Id::BoolUnary_N: return Kind::BoolUnary;
507 case Id::BoolBinary_GlobEqual: return Kind::BoolBinary;
508 case Id::BoolBinary_GlobDEqual: return Kind::BoolBinary;
509 case Id::BoolBinary_GlobNEqual: return Kind::BoolBinary;
510 case Id::BoolBinary_EqualTilde: return Kind::BoolBinary;
511 case Id::BoolBinary_ef: return Kind::BoolBinary;
512 case Id::BoolBinary_nt: return Kind::BoolBinary;
513 case Id::BoolBinary_ot: return Kind::BoolBinary;
514 case Id::BoolBinary_eq: return Kind::BoolBinary;
515 case Id::BoolBinary_ne: return Kind::BoolBinary;
516 case Id::BoolBinary_gt: return Kind::BoolBinary;
517 case Id::BoolBinary_ge: return Kind::BoolBinary;
518 case Id::BoolBinary_lt: return Kind::BoolBinary;
519 case Id::BoolBinary_le: return Kind::BoolBinary;
520 case Id::BoolBinary_Equal: return Kind::BoolBinary;
521 case Id::BoolBinary_DEqual: return Kind::BoolBinary;
522 case Id::BoolBinary_NEqual: return Kind::BoolBinary;
523 }
524 FAIL(kShouldNotGetHere);
525}
526
527types_asdl::opt_group_t OptionGroupNum(BigStr* s) {
528 int length = len(s);
529 if (length == 0) return 0; // consts.NO_INDEX
530
531 const char* data = s->data_;
532 switch (data[0]) {
533 case 'o':
534 if (length == 7 && memcmp("oil:all", data, 7) == 0) return 3;
535 if (length == 11 && memcmp("oil:upgrade", data, 11) == 0) return 2;
536 break;
537 case 's':
538 if (length == 10 && memcmp("strict:all", data, 10) == 0) return 1;
539 break;
540 case 'y':
541 if (length == 7 && memcmp("ysh:all", data, 7) == 0) return 3;
542 if (length == 11 && memcmp("ysh:upgrade", data, 11) == 0) return 2;
543 break;
544 }
545
546 return 0; // consts.NO_INDEX
547}
548
549option_asdl::option_t OptionNum(BigStr* s) {
550 int length = len(s);
551 if (length == 0) return 0; // consts.NO_INDEX
552
553 const char* data = s->data_;
554 switch (data[0]) {
555 case '_':
556 if (length == 18 && memcmp("_allow_command_sub", data, 18) == 0) return 21;
557 if (length == 18 && memcmp("_allow_process_sub", data, 18) == 0) return 22;
558 if (length == 13 && memcmp("_running_trap", data, 13) == 0) return 25;
559 if (length == 12 && memcmp("_running_hay", data, 12) == 0) return 26;
560 if (length == 14 && memcmp("_no_debug_trap", data, 14) == 0) return 27;
561 break;
562 case 'a':
563 if (length == 17 && memcmp("assoc_expand_once", data, 17) == 0) return 72;
564 if (length == 6 && memcmp("autocd", data, 6) == 0) return 73;
565 break;
566 case 'c':
567 if (length == 19 && memcmp("command_sub_errexit", data, 19) == 0) return 48;
568 if (length == 7 && memcmp("cmdhist", data, 7) == 0) return 71;
569 if (length == 11 && memcmp("cdable_vars", data, 11) == 0) return 74;
570 if (length == 7 && memcmp("cdspell", data, 7) == 0) return 75;
571 if (length == 9 && memcmp("checkhash", data, 9) == 0) return 76;
572 if (length == 9 && memcmp("checkjobs", data, 9) == 0) return 77;
573 if (length == 12 && memcmp("checkwinsize", data, 12) == 0) return 78;
574 if (length == 18 && memcmp("complete_fullquote", data, 18) == 0) return 79;
575 break;
576 case 'd':
577 if (length == 13 && memcmp("dynamic_scope", data, 13) == 0) return 23;
578 if (length == 8 && memcmp("dashglob", data, 8) == 0) return 47;
579 if (length == 9 && memcmp("direxpand", data, 9) == 0) return 80;
580 if (length == 8 && memcmp("dirspell", data, 8) == 0) return 81;
581 if (length == 7 && memcmp("dotglob", data, 7) == 0) return 82;
582 break;
583 case 'e':
584 if (length == 7 && memcmp("errexit", data, 7) == 0) return 1;
585 if (length == 5 && memcmp("emacs", data, 5) == 0) return 14;
586 if (length == 7 && memcmp("extglob", data, 7) == 0) return 18;
587 if (length == 17 && memcmp("eval_unsafe_arith", data, 17) == 0) return 20;
588 if (length == 14 && memcmp("expand_aliases", data, 14) == 0) return 66;
589 if (length == 8 && memcmp("execfail", data, 8) == 0) return 83;
590 if (length == 8 && memcmp("extdebug", data, 8) == 0) return 84;
591 if (length == 8 && memcmp("extquote", data, 8) == 0) return 85;
592 break;
593 case 'f':
594 if (length == 8 && memcmp("failglob", data, 8) == 0) return 17;
595 if (length == 13 && memcmp("force_fignore", data, 13) == 0) return 86;
596 break;
597 case 'g':
598 if (length == 15 && memcmp("globasciiranges", data, 15) == 0) return 87;
599 if (length == 8 && memcmp("globstar", data, 8) == 0) return 88;
600 if (length == 10 && memcmp("gnu_errfmt", data, 10) == 0) return 89;
601 break;
602 case 'h':
603 if (length == 7 && memcmp("hashall", data, 7) == 0) return 16;
604 if (length == 10 && memcmp("histappend", data, 10) == 0) return 69;
605 if (length == 12 && memcmp("hostcomplete", data, 12) == 0) return 70;
606 if (length == 10 && memcmp("histreedit", data, 10) == 0) return 90;
607 if (length == 10 && memcmp("histverify", data, 10) == 0) return 91;
608 if (length == 9 && memcmp("huponexit", data, 9) == 0) return 92;
609 break;
610 case 'i':
611 if (length == 15 && memcmp("inherit_errexit", data, 15) == 0) return 4;
612 if (length == 11 && memcmp("interactive", data, 11) == 0) return 15;
613 if (length == 20 && memcmp("interactive_comments", data, 20) == 0) return 93;
614 break;
615 case 'l':
616 if (length == 8 && memcmp("lastpipe", data, 8) == 0) return 67;
617 if (length == 7 && memcmp("lithist", data, 7) == 0) return 94;
618 if (length == 16 && memcmp("localvar_inherit", data, 16) == 0) return 95;
619 if (length == 14 && memcmp("localvar_unset", data, 14) == 0) return 96;
620 if (length == 11 && memcmp("login_shell", data, 11) == 0) return 97;
621 break;
622 case 'm':
623 if (length == 8 && memcmp("mailwarn", data, 8) == 0) return 98;
624 break;
625 case 'n':
626 if (length == 7 && memcmp("nounset", data, 7) == 0) return 2;
627 if (length == 8 && memcmp("nullglob", data, 8) == 0) return 5;
628 if (length == 6 && memcmp("noexec", data, 6) == 0) return 7;
629 if (length == 6 && memcmp("noglob", data, 6) == 0) return 10;
630 if (length == 9 && memcmp("noclobber", data, 9) == 0) return 11;
631 if (length == 11 && memcmp("nocasematch", data, 11) == 0) return 19;
632 if (length == 23 && memcmp("no_empty_cmd_completion", data, 23) == 0) return 99;
633 if (length == 10 && memcmp("nocaseglob", data, 10) == 0) return 100;
634 break;
635 case 'p':
636 if (length == 8 && memcmp("pipefail", data, 8) == 0) return 3;
637 if (length == 5 && memcmp("posix", data, 5) == 0) return 12;
638 if (length == 8 && memcmp("parse_at", data, 8) == 0) return 37;
639 if (length == 10 && memcmp("parse_proc", data, 10) == 0) return 38;
640 if (length == 10 && memcmp("parse_func", data, 10) == 0) return 39;
641 if (length == 11 && memcmp("parse_brace", data, 11) == 0) return 40;
642 if (length == 13 && memcmp("parse_bracket", data, 13) == 0) return 41;
643 if (length == 12 && memcmp("parse_equals", data, 12) == 0) return 42;
644 if (length == 11 && memcmp("parse_paren", data, 11) == 0) return 43;
645 if (length == 16 && memcmp("parse_ysh_string", data, 16) == 0) return 44;
646 if (length == 18 && memcmp("parse_triple_quote", data, 18) == 0) return 45;
647 if (length == 16 && memcmp("process_sub_fail", data, 16) == 0) return 49;
648 if (length == 12 && memcmp("parse_at_all", data, 12) == 0) return 54;
649 if (length == 15 && memcmp("parse_backslash", data, 15) == 0) return 55;
650 if (length == 15 && memcmp("parse_backticks", data, 15) == 0) return 56;
651 if (length == 12 && memcmp("parse_dollar", data, 12) == 0) return 57;
652 if (length == 13 && memcmp("parse_ignored", data, 13) == 0) return 58;
653 if (length == 14 && memcmp("parse_sh_arith", data, 14) == 0) return 59;
654 if (length == 12 && memcmp("parse_dparen", data, 12) == 0) return 60;
655 if (length == 14 && memcmp("parse_dbracket", data, 14) == 0) return 61;
656 if (length == 15 && memcmp("parse_bare_word", data, 15) == 0) return 62;
657 if (length == 8 && memcmp("progcomp", data, 8) == 0) return 68;
658 if (length == 14 && memcmp("progcomp_alias", data, 14) == 0) return 101;
659 if (length == 10 && memcmp("promptvars", data, 10) == 0) return 102;
660 break;
661 case 'r':
662 if (length == 15 && memcmp("redefine_module", data, 15) == 0) return 24;
663 if (length == 18 && memcmp("redefine_proc_func", data, 18) == 0) return 53;
664 if (length == 16 && memcmp("restricted_shell", data, 16) == 0) return 103;
665 break;
666 case 's':
667 if (length == 11 && memcmp("strict_argv", data, 11) == 0) return 28;
668 if (length == 12 && memcmp("strict_arith", data, 12) == 0) return 29;
669 if (length == 12 && memcmp("strict_array", data, 12) == 0) return 30;
670 if (length == 19 && memcmp("strict_control_flow", data, 19) == 0) return 31;
671 if (length == 14 && memcmp("strict_errexit", data, 14) == 0) return 32;
672 if (length == 14 && memcmp("strict_nameref", data, 14) == 0) return 33;
673 if (length == 16 && memcmp("strict_word_eval", data, 16) == 0) return 34;
674 if (length == 12 && memcmp("strict_tilde", data, 12) == 0) return 35;
675 if (length == 11 && memcmp("strict_glob", data, 11) == 0) return 36;
676 if (length == 16 && memcmp("simple_word_eval", data, 16) == 0) return 46;
677 if (length == 17 && memcmp("sigpipe_status_ok", data, 17) == 0) return 52;
678 if (length == 11 && memcmp("simple_echo", data, 11) == 0) return 63;
679 if (length == 19 && memcmp("simple_eval_builtin", data, 19) == 0) return 64;
680 if (length == 19 && memcmp("simple_test_builtin", data, 19) == 0) return 65;
681 if (length == 13 && memcmp("shift_verbose", data, 13) == 0) return 104;
682 if (length == 10 && memcmp("sourcepath", data, 10) == 0) return 105;
683 break;
684 case 'v':
685 if (length == 15 && memcmp("verbose_errexit", data, 15) == 0) return 6;
686 if (length == 7 && memcmp("verbose", data, 7) == 0) return 9;
687 if (length == 2 && memcmp("vi", data, 2) == 0) return 13;
688 break;
689 case 'x':
690 if (length == 6 && memcmp("xtrace", data, 6) == 0) return 8;
691 if (length == 11 && memcmp("xtrace_rich", data, 11) == 0) return 50;
692 if (length == 14 && memcmp("xtrace_details", data, 14) == 0) return 51;
693 if (length == 8 && memcmp("xpg_echo", data, 8) == 0) return 106;
694 break;
695 }
696
697 return 0; // consts.NO_INDEX
698}
699
700builtin_t LookupNormalBuiltin(BigStr* s) {
701 int length = len(s);
702 if (length == 0) return 0; // consts.NO_INDEX
703
704 const char* data = s->data_;
705 switch (data[0]) {
706 case '[':
707 if (length == 1 && memcmp("[", data, 1) == 0) return 70;
708 break;
709 case '_':
710 if (length == 5 && memcmp("__cat", data, 5) == 0) return 73;
711 break;
712 case 'a':
713 if (length == 5 && memcmp("alias", data, 5) == 0) return 48;
714 if (length == 6 && memcmp("append", data, 6) == 0) return 51;
715 break;
716 case 'b':
717 if (length == 2 && memcmp("bg", data, 2) == 0) return 35;
718 if (length == 4 && memcmp("bind", data, 4) == 0) return 50;
719 if (length == 10 && memcmp("boolstatus", data, 10) == 0) return 68;
720 break;
721 case 'c':
722 if (length == 2 && memcmp("cd", data, 2) == 0) return 24;
723 if (length == 8 && memcmp("complete", data, 8) == 0) return 37;
724 if (length == 7 && memcmp("compgen", data, 7) == 0) return 38;
725 if (length == 7 && memcmp("compopt", data, 7) == 0) return 39;
726 if (length == 10 && memcmp("compadjust", data, 10) == 0) return 40;
727 if (length == 10 && memcmp("compexport", data, 10) == 0) return 41;
728 if (length == 7 && memcmp("command", data, 7) == 0) return 43;
729 if (length == 3 && memcmp("ctx", data, 3) == 0) return 66;
730 break;
731 case 'd':
732 if (length == 4 && memcmp("dirs", data, 4) == 0) return 27;
733 break;
734 case 'e':
735 if (length == 4 && memcmp("echo", data, 4) == 0) return 20;
736 if (length == 5 && memcmp("error", data, 5) == 0) return 60;
737 break;
738 case 'f':
739 if (length == 5 && memcmp("false", data, 5) == 0) return 17;
740 if (length == 2 && memcmp("fg", data, 2) == 0) return 34;
741 if (length == 6 && memcmp("failed", data, 6) == 0) return 61;
742 if (length == 4 && memcmp("fork", data, 4) == 0) return 62;
743 if (length == 8 && memcmp("forkwait", data, 8) == 0) return 63;
744 if (length == 5 && memcmp("fopen", data, 5) == 0) return 64;
745 break;
746 case 'g':
747 if (length == 7 && memcmp("getopts", data, 7) == 0) return 42;
748 break;
749 case 'h':
750 if (length == 4 && memcmp("hash", data, 4) == 0) return 45;
751 if (length == 4 && memcmp("help", data, 4) == 0) return 46;
752 if (length == 7 && memcmp("history", data, 7) == 0) return 47;
753 if (length == 3 && memcmp("hay", data, 3) == 0) return 56;
754 if (length == 7 && memcmp("haynode", data, 7) == 0) return 57;
755 break;
756 case 'i':
757 if (length == 7 && memcmp("is-main", data, 7) == 0) return 72;
758 break;
759 case 'j':
760 if (length == 4 && memcmp("jobs", data, 4) == 0) return 33;
761 if (length == 4 && memcmp("json", data, 4) == 0) return 53;
762 if (length == 5 && memcmp("json8", data, 5) == 0) return 54;
763 break;
764 case 'm':
765 if (length == 7 && memcmp("mapfile", data, 7) == 0) return 22;
766 if (length == 6 && memcmp("module", data, 6) == 0) return 58;
767 break;
768 case 'p':
769 if (length == 6 && memcmp("printf", data, 6) == 0) return 21;
770 if (length == 5 && memcmp("pushd", data, 5) == 0) return 25;
771 if (length == 4 && memcmp("popd", data, 4) == 0) return 26;
772 if (length == 3 && memcmp("pwd", data, 3) == 0) return 28;
773 if (length == 2 && memcmp("pp", data, 2) == 0) return 55;
774 if (length == 14 && memcmp("push-registers", data, 14) == 0) return 71;
775 break;
776 case 'r':
777 if (length == 4 && memcmp("read", data, 4) == 0) return 19;
778 if (length == 9 && memcmp("readarray", data, 9) == 0) return 23;
779 if (length == 7 && memcmp("runproc", data, 7) == 0) return 67;
780 break;
781 case 's':
782 if (length == 6 && memcmp("source", data, 6) == 0) return 29;
783 if (length == 5 && memcmp("shopt", data, 5) == 0) return 36;
784 if (length == 5 && memcmp("shvar", data, 5) == 0) return 65;
785 break;
786 case 't':
787 if (length == 4 && memcmp("true", data, 4) == 0) return 16;
788 if (length == 3 && memcmp("try", data, 3) == 0) return 18;
789 if (length == 4 && memcmp("type", data, 4) == 0) return 44;
790 if (length == 4 && memcmp("test", data, 4) == 0) return 69;
791 break;
792 case 'u':
793 if (length == 5 && memcmp("umask", data, 5) == 0) return 30;
794 if (length == 6 && memcmp("ulimit", data, 6) == 0) return 31;
795 if (length == 7 && memcmp("unalias", data, 7) == 0) return 49;
796 if (length == 3 && memcmp("use", data, 3) == 0) return 59;
797 break;
798 case 'w':
799 if (length == 4 && memcmp("wait", data, 4) == 0) return 32;
800 if (length == 5 && memcmp("write", data, 5) == 0) return 52;
801 break;
802 }
803
804 return 0; // consts.NO_INDEX
805}
806
807builtin_t LookupAssignBuiltin(BigStr* s) {
808 int length = len(s);
809 if (length == 0) return 0; // consts.NO_INDEX
810
811 const char* data = s->data_;
812 switch (data[0]) {
813 case 'd':
814 if (length == 7 && memcmp("declare", data, 7) == 0) return 13;
815 break;
816 case 'e':
817 if (length == 6 && memcmp("export", data, 6) == 0) return 15;
818 break;
819 case 'l':
820 if (length == 5 && memcmp("local", data, 5) == 0) return 12;
821 break;
822 case 'r':
823 if (length == 8 && memcmp("readonly", data, 8) == 0) return 11;
824 break;
825 case 't':
826 if (length == 7 && memcmp("typeset", data, 7) == 0) return 14;
827 break;
828 }
829
830 return 0; // consts.NO_INDEX
831}
832
833builtin_t LookupSpecialBuiltin(BigStr* s) {
834 int length = len(s);
835 if (length == 0) return 0; // consts.NO_INDEX
836
837 const char* data = s->data_;
838 switch (data[0]) {
839 case '.':
840 if (length == 1 && memcmp(".", data, 1) == 0) return 2;
841 break;
842 case ':':
843 if (length == 1 && memcmp(":", data, 1) == 0) return 1;
844 break;
845 case 'b':
846 if (length == 7 && memcmp("builtin", data, 7) == 0) return 10;
847 break;
848 case 'e':
849 if (length == 4 && memcmp("exec", data, 4) == 0) return 3;
850 if (length == 4 && memcmp("eval", data, 4) == 0) return 4;
851 break;
852 case 's':
853 if (length == 3 && memcmp("set", data, 3) == 0) return 5;
854 if (length == 5 && memcmp("shift", data, 5) == 0) return 6;
855 break;
856 case 't':
857 if (length == 5 && memcmp("times", data, 5) == 0) return 7;
858 if (length == 4 && memcmp("trap", data, 4) == 0) return 8;
859 break;
860 case 'u':
861 if (length == 5 && memcmp("unset", data, 5) == 0) return 9;
862 break;
863 }
864
865 return 0; // consts.NO_INDEX
866}
867
868bool IsControlFlow(BigStr* s) {
869 int length = len(s);
870 if (length == 0) return false;
871
872 const char* data = s->data_;
873 switch (data[0]) {
874 case 'b':
875 if (length == 5 && memcmp("break", data, 5) == 0) return true;
876 break;
877 case 'c':
878 if (length == 8 && memcmp("continue", data, 8) == 0) return true;
879 break;
880 case 'e':
881 if (length == 4 && memcmp("exit", data, 4) == 0) return true;
882 break;
883 case 'r':
884 if (length == 6 && memcmp("return", data, 6) == 0) return true;
885 break;
886 }
887
888 return false;
889}
890
891GLOBAL_STR(kControlFlowName_310, "break");
892GLOBAL_STR(kControlFlowName_311, "continue");
893GLOBAL_STR(kControlFlowName_312, "return");
894GLOBAL_STR(kControlFlowName_313, "exit");
895
896BigStr* ControlFlowName(int i) {
897 switch (i) {
898 case 310:
899 return kControlFlowName_310;
900 break;
901 case 311:
902 return kControlFlowName_311;
903 break;
904 case 312:
905 return kControlFlowName_312;
906 break;
907 case 313:
908 return kControlFlowName_313;
909 break;
910 default:
911 FAIL(kShouldNotGetHere);
912 }
913}
914
915bool IsKeyword(BigStr* s) {
916 int length = len(s);
917 if (length == 0) return false;
918
919 const char* data = s->data_;
920 switch (data[0]) {
921 case '!':
922 if (length == 1 && memcmp("!", data, 1) == 0) return true;
923 break;
924 case '=':
925 if (length == 1 && memcmp("=", data, 1) == 0) return true;
926 break;
927 case '[':
928 if (length == 2 && memcmp("[[", data, 2) == 0) return true;
929 break;
930 case ']':
931 if (length == 2 && memcmp("]]", data, 2) == 0) return true;
932 break;
933 case 'c':
934 if (length == 4 && memcmp("case", data, 4) == 0) return true;
935 if (length == 5 && memcmp("const", data, 5) == 0) return true;
936 if (length == 4 && memcmp("call", data, 4) == 0) return true;
937 break;
938 case 'd':
939 if (length == 2 && memcmp("do", data, 2) == 0) return true;
940 if (length == 4 && memcmp("done", data, 4) == 0) return true;
941 break;
942 case 'e':
943 if (length == 4 && memcmp("esac", data, 4) == 0) return true;
944 if (length == 4 && memcmp("else", data, 4) == 0) return true;
945 if (length == 4 && memcmp("elif", data, 4) == 0) return true;
946 break;
947 case 'f':
948 if (length == 3 && memcmp("for", data, 3) == 0) return true;
949 if (length == 2 && memcmp("fi", data, 2) == 0) return true;
950 if (length == 8 && memcmp("function", data, 8) == 0) return true;
951 if (length == 4 && memcmp("func", data, 4) == 0) return true;
952 break;
953 case 'i':
954 if (length == 2 && memcmp("in", data, 2) == 0) return true;
955 if (length == 2 && memcmp("if", data, 2) == 0) return true;
956 break;
957 case 'p':
958 if (length == 4 && memcmp("proc", data, 4) == 0) return true;
959 break;
960 case 's':
961 if (length == 6 && memcmp("setvar", data, 6) == 0) return true;
962 if (length == 9 && memcmp("setglobal", data, 9) == 0) return true;
963 break;
964 case 't':
965 if (length == 4 && memcmp("then", data, 4) == 0) return true;
966 if (length == 4 && memcmp("time", data, 4) == 0) return true;
967 if (length == 5 && memcmp("typed", data, 5) == 0) return true;
968 break;
969 case 'u':
970 if (length == 5 && memcmp("until", data, 5) == 0) return true;
971 break;
972 case 'v':
973 if (length == 3 && memcmp("var", data, 3) == 0) return true;
974 break;
975 case 'w':
976 if (length == 5 && memcmp("while", data, 5) == 0) return true;
977 break;
978 case '{':
979 if (length == 1 && memcmp("{", data, 1) == 0) return true;
980 break;
981 case '}':
982 if (length == 1 && memcmp("}", data, 1) == 0) return true;
983 break;
984 }
985
986 return false;
987}
988
989BigStr* LookupCharC(BigStr* c) {
990 assert(len(c) == 1);
991
992 char ch = c->data_[0];
993
994 // TODO-intern: return value
995 switch (ch) {
996 case '\"':
997 return StrFromC("\"", 1);
998 break;
999 case '\'':
1000 return StrFromC("\'", 1);
1001 break;
1002 case '/':
1003 return StrFromC("/", 1);
1004 break;
1005 case '0':
1006 return StrFromC("\0", 1);
1007 break;
1008 case 'E':
1009 return StrFromC("\x1b", 1);
1010 break;
1011 case '\\':
1012 return StrFromC("\\", 1);
1013 break;
1014 case 'a':
1015 return StrFromC("\a", 1);
1016 break;
1017 case 'b':
1018 return StrFromC("\b", 1);
1019 break;
1020 case 'e':
1021 return StrFromC("\x1b", 1);
1022 break;
1023 case 'f':
1024 return StrFromC("\f", 1);
1025 break;
1026 case 'n':
1027 return StrFromC("\n", 1);
1028 break;
1029 case 'r':
1030 return StrFromC("\r", 1);
1031 break;
1032 case 't':
1033 return StrFromC("\t", 1);
1034 break;
1035 case 'v':
1036 return StrFromC("\v", 1);
1037 break;
1038 default:
1039 assert(0);
1040
1041 }
1042}
1043BigStr* LookupCharPrompt(BigStr* c) {
1044 assert(len(c) == 1);
1045
1046 char ch = c->data_[0];
1047
1048 // TODO-intern: return value
1049 switch (ch) {
1050 case '\\':
1051 return StrFromC("\\", 1);
1052 break;
1053 case 'a':
1054 return StrFromC("\a", 1);
1055 break;
1056 case 'e':
1057 return StrFromC("\x1b", 1);
1058 break;
1059 case 'n':
1060 return StrFromC("\n", 1);
1061 break;
1062 case 'r':
1063 return StrFromC("\r", 1);
1064 break;
1065 default:
1066 return nullptr;
1067
1068 }
1069}
1070GLOBAL_STR(kOptionName_1, "errexit");
1071GLOBAL_STR(kOptionName_2, "nounset");
1072GLOBAL_STR(kOptionName_3, "pipefail");
1073GLOBAL_STR(kOptionName_4, "inherit_errexit");
1074GLOBAL_STR(kOptionName_5, "nullglob");
1075GLOBAL_STR(kOptionName_6, "verbose_errexit");
1076GLOBAL_STR(kOptionName_7, "noexec");
1077GLOBAL_STR(kOptionName_8, "xtrace");
1078GLOBAL_STR(kOptionName_9, "verbose");
1079GLOBAL_STR(kOptionName_10, "noglob");
1080GLOBAL_STR(kOptionName_11, "noclobber");
1081GLOBAL_STR(kOptionName_12, "posix");
1082GLOBAL_STR(kOptionName_13, "vi");
1083GLOBAL_STR(kOptionName_14, "emacs");
1084GLOBAL_STR(kOptionName_15, "interactive");
1085GLOBAL_STR(kOptionName_16, "hashall");
1086GLOBAL_STR(kOptionName_17, "failglob");
1087GLOBAL_STR(kOptionName_18, "extglob");
1088GLOBAL_STR(kOptionName_19, "nocasematch");
1089GLOBAL_STR(kOptionName_20, "eval_unsafe_arith");
1090GLOBAL_STR(kOptionName_21, "_allow_command_sub");
1091GLOBAL_STR(kOptionName_22, "_allow_process_sub");
1092GLOBAL_STR(kOptionName_23, "dynamic_scope");
1093GLOBAL_STR(kOptionName_24, "redefine_module");
1094GLOBAL_STR(kOptionName_25, "_running_trap");
1095GLOBAL_STR(kOptionName_26, "_running_hay");
1096GLOBAL_STR(kOptionName_27, "_no_debug_trap");
1097GLOBAL_STR(kOptionName_28, "strict_argv");
1098GLOBAL_STR(kOptionName_29, "strict_arith");
1099GLOBAL_STR(kOptionName_30, "strict_array");
1100GLOBAL_STR(kOptionName_31, "strict_control_flow");
1101GLOBAL_STR(kOptionName_32, "strict_errexit");
1102GLOBAL_STR(kOptionName_33, "strict_nameref");
1103GLOBAL_STR(kOptionName_34, "strict_word_eval");
1104GLOBAL_STR(kOptionName_35, "strict_tilde");
1105GLOBAL_STR(kOptionName_36, "strict_glob");
1106GLOBAL_STR(kOptionName_37, "parse_at");
1107GLOBAL_STR(kOptionName_38, "parse_proc");
1108GLOBAL_STR(kOptionName_39, "parse_func");
1109GLOBAL_STR(kOptionName_40, "parse_brace");
1110GLOBAL_STR(kOptionName_41, "parse_bracket");
1111GLOBAL_STR(kOptionName_42, "parse_equals");
1112GLOBAL_STR(kOptionName_43, "parse_paren");
1113GLOBAL_STR(kOptionName_44, "parse_ysh_string");
1114GLOBAL_STR(kOptionName_45, "parse_triple_quote");
1115GLOBAL_STR(kOptionName_46, "simple_word_eval");
1116GLOBAL_STR(kOptionName_47, "dashglob");
1117GLOBAL_STR(kOptionName_48, "command_sub_errexit");
1118GLOBAL_STR(kOptionName_49, "process_sub_fail");
1119GLOBAL_STR(kOptionName_50, "xtrace_rich");
1120GLOBAL_STR(kOptionName_51, "xtrace_details");
1121GLOBAL_STR(kOptionName_52, "sigpipe_status_ok");
1122GLOBAL_STR(kOptionName_53, "redefine_proc_func");
1123GLOBAL_STR(kOptionName_54, "parse_at_all");
1124GLOBAL_STR(kOptionName_55, "parse_backslash");
1125GLOBAL_STR(kOptionName_56, "parse_backticks");
1126GLOBAL_STR(kOptionName_57, "parse_dollar");
1127GLOBAL_STR(kOptionName_58, "parse_ignored");
1128GLOBAL_STR(kOptionName_59, "parse_sh_arith");
1129GLOBAL_STR(kOptionName_60, "parse_dparen");
1130GLOBAL_STR(kOptionName_61, "parse_dbracket");
1131GLOBAL_STR(kOptionName_62, "parse_bare_word");
1132GLOBAL_STR(kOptionName_63, "simple_echo");
1133GLOBAL_STR(kOptionName_64, "simple_eval_builtin");
1134GLOBAL_STR(kOptionName_65, "simple_test_builtin");
1135GLOBAL_STR(kOptionName_66, "expand_aliases");
1136GLOBAL_STR(kOptionName_67, "lastpipe");
1137GLOBAL_STR(kOptionName_68, "progcomp");
1138GLOBAL_STR(kOptionName_69, "histappend");
1139GLOBAL_STR(kOptionName_70, "hostcomplete");
1140GLOBAL_STR(kOptionName_71, "cmdhist");
1141GLOBAL_STR(kOptionName_72, "assoc_expand_once");
1142GLOBAL_STR(kOptionName_73, "autocd");
1143GLOBAL_STR(kOptionName_74, "cdable_vars");
1144GLOBAL_STR(kOptionName_75, "cdspell");
1145GLOBAL_STR(kOptionName_76, "checkhash");
1146GLOBAL_STR(kOptionName_77, "checkjobs");
1147GLOBAL_STR(kOptionName_78, "checkwinsize");
1148GLOBAL_STR(kOptionName_79, "complete_fullquote");
1149GLOBAL_STR(kOptionName_80, "direxpand");
1150GLOBAL_STR(kOptionName_81, "dirspell");
1151GLOBAL_STR(kOptionName_82, "dotglob");
1152GLOBAL_STR(kOptionName_83, "execfail");
1153GLOBAL_STR(kOptionName_84, "extdebug");
1154GLOBAL_STR(kOptionName_85, "extquote");
1155GLOBAL_STR(kOptionName_86, "force_fignore");
1156GLOBAL_STR(kOptionName_87, "globasciiranges");
1157GLOBAL_STR(kOptionName_88, "globstar");
1158GLOBAL_STR(kOptionName_89, "gnu_errfmt");
1159GLOBAL_STR(kOptionName_90, "histreedit");
1160GLOBAL_STR(kOptionName_91, "histverify");
1161GLOBAL_STR(kOptionName_92, "huponexit");
1162GLOBAL_STR(kOptionName_93, "interactive_comments");
1163GLOBAL_STR(kOptionName_94, "lithist");
1164GLOBAL_STR(kOptionName_95, "localvar_inherit");
1165GLOBAL_STR(kOptionName_96, "localvar_unset");
1166GLOBAL_STR(kOptionName_97, "login_shell");
1167GLOBAL_STR(kOptionName_98, "mailwarn");
1168GLOBAL_STR(kOptionName_99, "no_empty_cmd_completion");
1169GLOBAL_STR(kOptionName_100, "nocaseglob");
1170GLOBAL_STR(kOptionName_101, "progcomp_alias");
1171GLOBAL_STR(kOptionName_102, "promptvars");
1172GLOBAL_STR(kOptionName_103, "restricted_shell");
1173GLOBAL_STR(kOptionName_104, "shift_verbose");
1174GLOBAL_STR(kOptionName_105, "sourcepath");
1175GLOBAL_STR(kOptionName_106, "xpg_echo");
1176
1177BigStr* OptionName(int i) {
1178 switch (i) {
1179 case 1:
1180 return kOptionName_1;
1181 break;
1182 case 2:
1183 return kOptionName_2;
1184 break;
1185 case 3:
1186 return kOptionName_3;
1187 break;
1188 case 4:
1189 return kOptionName_4;
1190 break;
1191 case 5:
1192 return kOptionName_5;
1193 break;
1194 case 6:
1195 return kOptionName_6;
1196 break;
1197 case 7:
1198 return kOptionName_7;
1199 break;
1200 case 8:
1201 return kOptionName_8;
1202 break;
1203 case 9:
1204 return kOptionName_9;
1205 break;
1206 case 10:
1207 return kOptionName_10;
1208 break;
1209 case 11:
1210 return kOptionName_11;
1211 break;
1212 case 12:
1213 return kOptionName_12;
1214 break;
1215 case 13:
1216 return kOptionName_13;
1217 break;
1218 case 14:
1219 return kOptionName_14;
1220 break;
1221 case 15:
1222 return kOptionName_15;
1223 break;
1224 case 16:
1225 return kOptionName_16;
1226 break;
1227 case 17:
1228 return kOptionName_17;
1229 break;
1230 case 18:
1231 return kOptionName_18;
1232 break;
1233 case 19:
1234 return kOptionName_19;
1235 break;
1236 case 20:
1237 return kOptionName_20;
1238 break;
1239 case 21:
1240 return kOptionName_21;
1241 break;
1242 case 22:
1243 return kOptionName_22;
1244 break;
1245 case 23:
1246 return kOptionName_23;
1247 break;
1248 case 24:
1249 return kOptionName_24;
1250 break;
1251 case 25:
1252 return kOptionName_25;
1253 break;
1254 case 26:
1255 return kOptionName_26;
1256 break;
1257 case 27:
1258 return kOptionName_27;
1259 break;
1260 case 28:
1261 return kOptionName_28;
1262 break;
1263 case 29:
1264 return kOptionName_29;
1265 break;
1266 case 30:
1267 return kOptionName_30;
1268 break;
1269 case 31:
1270 return kOptionName_31;
1271 break;
1272 case 32:
1273 return kOptionName_32;
1274 break;
1275 case 33:
1276 return kOptionName_33;
1277 break;
1278 case 34:
1279 return kOptionName_34;
1280 break;
1281 case 35:
1282 return kOptionName_35;
1283 break;
1284 case 36:
1285 return kOptionName_36;
1286 break;
1287 case 37:
1288 return kOptionName_37;
1289 break;
1290 case 38:
1291 return kOptionName_38;
1292 break;
1293 case 39:
1294 return kOptionName_39;
1295 break;
1296 case 40:
1297 return kOptionName_40;
1298 break;
1299 case 41:
1300 return kOptionName_41;
1301 break;
1302 case 42:
1303 return kOptionName_42;
1304 break;
1305 case 43:
1306 return kOptionName_43;
1307 break;
1308 case 44:
1309 return kOptionName_44;
1310 break;
1311 case 45:
1312 return kOptionName_45;
1313 break;
1314 case 46:
1315 return kOptionName_46;
1316 break;
1317 case 47:
1318 return kOptionName_47;
1319 break;
1320 case 48:
1321 return kOptionName_48;
1322 break;
1323 case 49:
1324 return kOptionName_49;
1325 break;
1326 case 50:
1327 return kOptionName_50;
1328 break;
1329 case 51:
1330 return kOptionName_51;
1331 break;
1332 case 52:
1333 return kOptionName_52;
1334 break;
1335 case 53:
1336 return kOptionName_53;
1337 break;
1338 case 54:
1339 return kOptionName_54;
1340 break;
1341 case 55:
1342 return kOptionName_55;
1343 break;
1344 case 56:
1345 return kOptionName_56;
1346 break;
1347 case 57:
1348 return kOptionName_57;
1349 break;
1350 case 58:
1351 return kOptionName_58;
1352 break;
1353 case 59:
1354 return kOptionName_59;
1355 break;
1356 case 60:
1357 return kOptionName_60;
1358 break;
1359 case 61:
1360 return kOptionName_61;
1361 break;
1362 case 62:
1363 return kOptionName_62;
1364 break;
1365 case 63:
1366 return kOptionName_63;
1367 break;
1368 case 64:
1369 return kOptionName_64;
1370 break;
1371 case 65:
1372 return kOptionName_65;
1373 break;
1374 case 66:
1375 return kOptionName_66;
1376 break;
1377 case 67:
1378 return kOptionName_67;
1379 break;
1380 case 68:
1381 return kOptionName_68;
1382 break;
1383 case 69:
1384 return kOptionName_69;
1385 break;
1386 case 70:
1387 return kOptionName_70;
1388 break;
1389 case 71:
1390 return kOptionName_71;
1391 break;
1392 case 72:
1393 return kOptionName_72;
1394 break;
1395 case 73:
1396 return kOptionName_73;
1397 break;
1398 case 74:
1399 return kOptionName_74;
1400 break;
1401 case 75:
1402 return kOptionName_75;
1403 break;
1404 case 76:
1405 return kOptionName_76;
1406 break;
1407 case 77:
1408 return kOptionName_77;
1409 break;
1410 case 78:
1411 return kOptionName_78;
1412 break;
1413 case 79:
1414 return kOptionName_79;
1415 break;
1416 case 80:
1417 return kOptionName_80;
1418 break;
1419 case 81:
1420 return kOptionName_81;
1421 break;
1422 case 82:
1423 return kOptionName_82;
1424 break;
1425 case 83:
1426 return kOptionName_83;
1427 break;
1428 case 84:
1429 return kOptionName_84;
1430 break;
1431 case 85:
1432 return kOptionName_85;
1433 break;
1434 case 86:
1435 return kOptionName_86;
1436 break;
1437 case 87:
1438 return kOptionName_87;
1439 break;
1440 case 88:
1441 return kOptionName_88;
1442 break;
1443 case 89:
1444 return kOptionName_89;
1445 break;
1446 case 90:
1447 return kOptionName_90;
1448 break;
1449 case 91:
1450 return kOptionName_91;
1451 break;
1452 case 92:
1453 return kOptionName_92;
1454 break;
1455 case 93:
1456 return kOptionName_93;
1457 break;
1458 case 94:
1459 return kOptionName_94;
1460 break;
1461 case 95:
1462 return kOptionName_95;
1463 break;
1464 case 96:
1465 return kOptionName_96;
1466 break;
1467 case 97:
1468 return kOptionName_97;
1469 break;
1470 case 98:
1471 return kOptionName_98;
1472 break;
1473 case 99:
1474 return kOptionName_99;
1475 break;
1476 case 100:
1477 return kOptionName_100;
1478 break;
1479 case 101:
1480 return kOptionName_101;
1481 break;
1482 case 102:
1483 return kOptionName_102;
1484 break;
1485 case 103:
1486 return kOptionName_103;
1487 break;
1488 case 104:
1489 return kOptionName_104;
1490 break;
1491 case 105:
1492 return kOptionName_105;
1493 break;
1494 case 106:
1495 return kOptionName_106;
1496 break;
1497 default:
1498 FAIL(kShouldNotGetHere);
1499 }
1500}
1501
1502int _IFS_EDGE[8][6] = {
1503 { -1, -1, -1, -1, -1, -1 },
1504 { -1, -1, -1, -1, -1, -1 },
1505 { -1, (1<<16)|5, (4<<16)|3, (6<<16)|5, (7<<16)|5, (8<<16)|5 },
1506 { -1, (3<<16)|5, (4<<16)|5, (6<<16)|2, (7<<16)|2, (8<<16)|5 },
1507 { -1, (5<<16)|5, (4<<16)|3, (6<<16)|2, (6<<16)|2, (8<<16)|2 },
1508 { -1, (5<<16)|5, (4<<16)|3, (6<<16)|2, (7<<16)|2, (8<<16)|2 },
1509 { -1, (3<<16)|1, (4<<16)|1, (6<<16)|5, (7<<16)|1, (8<<16)|1 },
1510 { -1, (6<<16)|4, (6<<16)|4, (6<<16)|4, (6<<16)|4, (8<<16)|4 },
1511
1512};
1513
1514// Note: all of these are integers, e.g. state_i, emit_i, char_kind_i
1515using runtime_asdl::state_t;
1516using runtime_asdl::emit_t;
1517using runtime_asdl::char_kind_t;
1518
1519Tuple2<state_t, emit_t> IfsEdge(state_t state, runtime_asdl::char_kind_t ch) {
1520 int cell = _IFS_EDGE[state][ch];
1521 state_t new_state = cell >> 16;
1522 emit_t emit = cell & 0xFFFF;
1523 return Tuple2<state_t, emit_t>(new_state, emit);
1524}
1525
1526GLOBAL_STR(kBUILTIN_NAMES_0, ":");
1527GLOBAL_STR(kBUILTIN_NAMES_1, ".");
1528GLOBAL_STR(kBUILTIN_NAMES_2, "exec");
1529GLOBAL_STR(kBUILTIN_NAMES_3, "eval");
1530GLOBAL_STR(kBUILTIN_NAMES_4, "set");
1531GLOBAL_STR(kBUILTIN_NAMES_5, "shift");
1532GLOBAL_STR(kBUILTIN_NAMES_6, "times");
1533GLOBAL_STR(kBUILTIN_NAMES_7, "trap");
1534GLOBAL_STR(kBUILTIN_NAMES_8, "unset");
1535GLOBAL_STR(kBUILTIN_NAMES_9, "builtin");
1536GLOBAL_STR(kBUILTIN_NAMES_10, "readonly");
1537GLOBAL_STR(kBUILTIN_NAMES_11, "local");
1538GLOBAL_STR(kBUILTIN_NAMES_12, "declare");
1539GLOBAL_STR(kBUILTIN_NAMES_13, "typeset");
1540GLOBAL_STR(kBUILTIN_NAMES_14, "export");
1541GLOBAL_STR(kBUILTIN_NAMES_15, "true");
1542GLOBAL_STR(kBUILTIN_NAMES_16, "false");
1543GLOBAL_STR(kBUILTIN_NAMES_17, "try");
1544GLOBAL_STR(kBUILTIN_NAMES_18, "read");
1545GLOBAL_STR(kBUILTIN_NAMES_19, "echo");
1546GLOBAL_STR(kBUILTIN_NAMES_20, "printf");
1547GLOBAL_STR(kBUILTIN_NAMES_21, "mapfile");
1548GLOBAL_STR(kBUILTIN_NAMES_22, "readarray");
1549GLOBAL_STR(kBUILTIN_NAMES_23, "cd");
1550GLOBAL_STR(kBUILTIN_NAMES_24, "pushd");
1551GLOBAL_STR(kBUILTIN_NAMES_25, "popd");
1552GLOBAL_STR(kBUILTIN_NAMES_26, "dirs");
1553GLOBAL_STR(kBUILTIN_NAMES_27, "pwd");
1554GLOBAL_STR(kBUILTIN_NAMES_28, "source");
1555GLOBAL_STR(kBUILTIN_NAMES_29, "umask");
1556GLOBAL_STR(kBUILTIN_NAMES_30, "ulimit");
1557GLOBAL_STR(kBUILTIN_NAMES_31, "wait");
1558GLOBAL_STR(kBUILTIN_NAMES_32, "jobs");
1559GLOBAL_STR(kBUILTIN_NAMES_33, "fg");
1560GLOBAL_STR(kBUILTIN_NAMES_34, "bg");
1561GLOBAL_STR(kBUILTIN_NAMES_35, "shopt");
1562GLOBAL_STR(kBUILTIN_NAMES_36, "complete");
1563GLOBAL_STR(kBUILTIN_NAMES_37, "compgen");
1564GLOBAL_STR(kBUILTIN_NAMES_38, "compopt");
1565GLOBAL_STR(kBUILTIN_NAMES_39, "compadjust");
1566GLOBAL_STR(kBUILTIN_NAMES_40, "compexport");
1567GLOBAL_STR(kBUILTIN_NAMES_41, "getopts");
1568GLOBAL_STR(kBUILTIN_NAMES_42, "command");
1569GLOBAL_STR(kBUILTIN_NAMES_43, "type");
1570GLOBAL_STR(kBUILTIN_NAMES_44, "hash");
1571GLOBAL_STR(kBUILTIN_NAMES_45, "help");
1572GLOBAL_STR(kBUILTIN_NAMES_46, "history");
1573GLOBAL_STR(kBUILTIN_NAMES_47, "alias");
1574GLOBAL_STR(kBUILTIN_NAMES_48, "unalias");
1575GLOBAL_STR(kBUILTIN_NAMES_49, "bind");
1576GLOBAL_STR(kBUILTIN_NAMES_50, "append");
1577GLOBAL_STR(kBUILTIN_NAMES_51, "write");
1578GLOBAL_STR(kBUILTIN_NAMES_52, "json");
1579GLOBAL_STR(kBUILTIN_NAMES_53, "json8");
1580GLOBAL_STR(kBUILTIN_NAMES_54, "pp");
1581GLOBAL_STR(kBUILTIN_NAMES_55, "hay");
1582GLOBAL_STR(kBUILTIN_NAMES_56, "haynode");
1583GLOBAL_STR(kBUILTIN_NAMES_57, "module");
1584GLOBAL_STR(kBUILTIN_NAMES_58, "use");
1585GLOBAL_STR(kBUILTIN_NAMES_59, "error");
1586GLOBAL_STR(kBUILTIN_NAMES_60, "failed");
1587GLOBAL_STR(kBUILTIN_NAMES_61, "fork");
1588GLOBAL_STR(kBUILTIN_NAMES_62, "forkwait");
1589GLOBAL_STR(kBUILTIN_NAMES_63, "fopen");
1590GLOBAL_STR(kBUILTIN_NAMES_64, "shvar");
1591GLOBAL_STR(kBUILTIN_NAMES_65, "ctx");
1592GLOBAL_STR(kBUILTIN_NAMES_66, "runproc");
1593GLOBAL_STR(kBUILTIN_NAMES_67, "boolstatus");
1594GLOBAL_STR(kBUILTIN_NAMES_68, "test");
1595GLOBAL_STR(kBUILTIN_NAMES_69, "[");
1596GLOBAL_STR(kBUILTIN_NAMES_70, "push-registers");
1597GLOBAL_STR(kBUILTIN_NAMES_71, "is-main");
1598GLOBAL_STR(kBUILTIN_NAMES_72, "__cat");
1599GLOBAL_LIST(BUILTIN_NAMES, BigStr*, 73, {kBUILTIN_NAMES_0 COMMA kBUILTIN_NAMES_1 COMMA kBUILTIN_NAMES_2 COMMA kBUILTIN_NAMES_3 COMMA kBUILTIN_NAMES_4 COMMA kBUILTIN_NAMES_5 COMMA kBUILTIN_NAMES_6 COMMA kBUILTIN_NAMES_7 COMMA kBUILTIN_NAMES_8 COMMA kBUILTIN_NAMES_9 COMMA kBUILTIN_NAMES_10 COMMA kBUILTIN_NAMES_11 COMMA kBUILTIN_NAMES_12 COMMA kBUILTIN_NAMES_13 COMMA kBUILTIN_NAMES_14 COMMA kBUILTIN_NAMES_15 COMMA kBUILTIN_NAMES_16 COMMA kBUILTIN_NAMES_17 COMMA kBUILTIN_NAMES_18 COMMA kBUILTIN_NAMES_19 COMMA kBUILTIN_NAMES_20 COMMA kBUILTIN_NAMES_21 COMMA kBUILTIN_NAMES_22 COMMA kBUILTIN_NAMES_23 COMMA kBUILTIN_NAMES_24 COMMA kBUILTIN_NAMES_25 COMMA kBUILTIN_NAMES_26 COMMA kBUILTIN_NAMES_27 COMMA kBUILTIN_NAMES_28 COMMA kBUILTIN_NAMES_29 COMMA kBUILTIN_NAMES_30 COMMA kBUILTIN_NAMES_31 COMMA kBUILTIN_NAMES_32 COMMA kBUILTIN_NAMES_33 COMMA kBUILTIN_NAMES_34 COMMA kBUILTIN_NAMES_35 COMMA kBUILTIN_NAMES_36 COMMA kBUILTIN_NAMES_37 COMMA kBUILTIN_NAMES_38 COMMA kBUILTIN_NAMES_39 COMMA kBUILTIN_NAMES_40 COMMA kBUILTIN_NAMES_41 COMMA kBUILTIN_NAMES_42 COMMA kBUILTIN_NAMES_43 COMMA kBUILTIN_NAMES_44 COMMA kBUILTIN_NAMES_45 COMMA kBUILTIN_NAMES_46 COMMA kBUILTIN_NAMES_47 COMMA kBUILTIN_NAMES_48 COMMA kBUILTIN_NAMES_49 COMMA kBUILTIN_NAMES_50 COMMA kBUILTIN_NAMES_51 COMMA kBUILTIN_NAMES_52 COMMA kBUILTIN_NAMES_53 COMMA kBUILTIN_NAMES_54 COMMA kBUILTIN_NAMES_55 COMMA kBUILTIN_NAMES_56 COMMA kBUILTIN_NAMES_57 COMMA kBUILTIN_NAMES_58 COMMA kBUILTIN_NAMES_59 COMMA kBUILTIN_NAMES_60 COMMA kBUILTIN_NAMES_61 COMMA kBUILTIN_NAMES_62 COMMA kBUILTIN_NAMES_63 COMMA kBUILTIN_NAMES_64 COMMA kBUILTIN_NAMES_65 COMMA kBUILTIN_NAMES_66 COMMA kBUILTIN_NAMES_67 COMMA kBUILTIN_NAMES_68 COMMA kBUILTIN_NAMES_69 COMMA kBUILTIN_NAMES_70 COMMA kBUILTIN_NAMES_71 COMMA kBUILTIN_NAMES_72});
1600
1601GLOBAL_STR(kOSH_KEYWORD_NAMES_0, "[[");
1602GLOBAL_STR(kOSH_KEYWORD_NAMES_1, "!");
1603GLOBAL_STR(kOSH_KEYWORD_NAMES_2, "for");
1604GLOBAL_STR(kOSH_KEYWORD_NAMES_3, "while");
1605GLOBAL_STR(kOSH_KEYWORD_NAMES_4, "until");
1606GLOBAL_STR(kOSH_KEYWORD_NAMES_5, "do");
1607GLOBAL_STR(kOSH_KEYWORD_NAMES_6, "done");
1608GLOBAL_STR(kOSH_KEYWORD_NAMES_7, "in");
1609GLOBAL_STR(kOSH_KEYWORD_NAMES_8, "case");
1610GLOBAL_STR(kOSH_KEYWORD_NAMES_9, "esac");
1611GLOBAL_STR(kOSH_KEYWORD_NAMES_10, "if");
1612GLOBAL_STR(kOSH_KEYWORD_NAMES_11, "fi");
1613GLOBAL_STR(kOSH_KEYWORD_NAMES_12, "then");
1614GLOBAL_STR(kOSH_KEYWORD_NAMES_13, "else");
1615GLOBAL_STR(kOSH_KEYWORD_NAMES_14, "elif");
1616GLOBAL_STR(kOSH_KEYWORD_NAMES_15, "function");
1617GLOBAL_STR(kOSH_KEYWORD_NAMES_16, "time");
1618GLOBAL_STR(kOSH_KEYWORD_NAMES_17, "const");
1619GLOBAL_STR(kOSH_KEYWORD_NAMES_18, "var");
1620GLOBAL_STR(kOSH_KEYWORD_NAMES_19, "setvar");
1621GLOBAL_STR(kOSH_KEYWORD_NAMES_20, "setglobal");
1622GLOBAL_STR(kOSH_KEYWORD_NAMES_21, "call");
1623GLOBAL_STR(kOSH_KEYWORD_NAMES_22, "proc");
1624GLOBAL_STR(kOSH_KEYWORD_NAMES_23, "typed");
1625GLOBAL_STR(kOSH_KEYWORD_NAMES_24, "func");
1626GLOBAL_STR(kOSH_KEYWORD_NAMES_25, "{");
1627GLOBAL_STR(kOSH_KEYWORD_NAMES_26, "=");
1628GLOBAL_STR(kOSH_KEYWORD_NAMES_27, "}");
1629GLOBAL_STR(kOSH_KEYWORD_NAMES_28, "]]");
1630GLOBAL_LIST(OSH_KEYWORD_NAMES, BigStr*, 29, {kOSH_KEYWORD_NAMES_0 COMMA kOSH_KEYWORD_NAMES_1 COMMA kOSH_KEYWORD_NAMES_2 COMMA kOSH_KEYWORD_NAMES_3 COMMA kOSH_KEYWORD_NAMES_4 COMMA kOSH_KEYWORD_NAMES_5 COMMA kOSH_KEYWORD_NAMES_6 COMMA kOSH_KEYWORD_NAMES_7 COMMA kOSH_KEYWORD_NAMES_8 COMMA kOSH_KEYWORD_NAMES_9 COMMA kOSH_KEYWORD_NAMES_10 COMMA kOSH_KEYWORD_NAMES_11 COMMA kOSH_KEYWORD_NAMES_12 COMMA kOSH_KEYWORD_NAMES_13 COMMA kOSH_KEYWORD_NAMES_14 COMMA kOSH_KEYWORD_NAMES_15 COMMA kOSH_KEYWORD_NAMES_16 COMMA kOSH_KEYWORD_NAMES_17 COMMA kOSH_KEYWORD_NAMES_18 COMMA kOSH_KEYWORD_NAMES_19 COMMA kOSH_KEYWORD_NAMES_20 COMMA kOSH_KEYWORD_NAMES_21 COMMA kOSH_KEYWORD_NAMES_22 COMMA kOSH_KEYWORD_NAMES_23 COMMA kOSH_KEYWORD_NAMES_24 COMMA kOSH_KEYWORD_NAMES_25 COMMA kOSH_KEYWORD_NAMES_26 COMMA kOSH_KEYWORD_NAMES_27 COMMA kOSH_KEYWORD_NAMES_28});
1631
1632GLOBAL_STR(kSET_OPTION_NAMES_0, "emacs");
1633GLOBAL_STR(kSET_OPTION_NAMES_1, "errexit");
1634GLOBAL_STR(kSET_OPTION_NAMES_2, "hashall");
1635GLOBAL_STR(kSET_OPTION_NAMES_3, "noclobber");
1636GLOBAL_STR(kSET_OPTION_NAMES_4, "noexec");
1637GLOBAL_STR(kSET_OPTION_NAMES_5, "noglob");
1638GLOBAL_STR(kSET_OPTION_NAMES_6, "nounset");
1639GLOBAL_STR(kSET_OPTION_NAMES_7, "pipefail");
1640GLOBAL_STR(kSET_OPTION_NAMES_8, "posix");
1641GLOBAL_STR(kSET_OPTION_NAMES_9, "verbose");
1642GLOBAL_STR(kSET_OPTION_NAMES_10, "vi");
1643GLOBAL_STR(kSET_OPTION_NAMES_11, "xtrace");
1644GLOBAL_LIST(SET_OPTION_NAMES, BigStr*, 12, {kSET_OPTION_NAMES_0 COMMA kSET_OPTION_NAMES_1 COMMA kSET_OPTION_NAMES_2 COMMA kSET_OPTION_NAMES_3 COMMA kSET_OPTION_NAMES_4 COMMA kSET_OPTION_NAMES_5 COMMA kSET_OPTION_NAMES_6 COMMA kSET_OPTION_NAMES_7 COMMA kSET_OPTION_NAMES_8 COMMA kSET_OPTION_NAMES_9 COMMA kSET_OPTION_NAMES_10 COMMA kSET_OPTION_NAMES_11});
1645
1646GLOBAL_STR(kSHOPT_OPTION_NAMES_0, "_allow_command_sub");
1647GLOBAL_STR(kSHOPT_OPTION_NAMES_1, "_allow_process_sub");
1648GLOBAL_STR(kSHOPT_OPTION_NAMES_2, "_no_debug_trap");
1649GLOBAL_STR(kSHOPT_OPTION_NAMES_3, "_running_hay");
1650GLOBAL_STR(kSHOPT_OPTION_NAMES_4, "_running_trap");
1651GLOBAL_STR(kSHOPT_OPTION_NAMES_5, "assoc_expand_once");
1652GLOBAL_STR(kSHOPT_OPTION_NAMES_6, "autocd");
1653GLOBAL_STR(kSHOPT_OPTION_NAMES_7, "cdable_vars");
1654GLOBAL_STR(kSHOPT_OPTION_NAMES_8, "cdspell");
1655GLOBAL_STR(kSHOPT_OPTION_NAMES_9, "checkhash");
1656GLOBAL_STR(kSHOPT_OPTION_NAMES_10, "checkjobs");
1657GLOBAL_STR(kSHOPT_OPTION_NAMES_11, "checkwinsize");
1658GLOBAL_STR(kSHOPT_OPTION_NAMES_12, "cmdhist");
1659GLOBAL_STR(kSHOPT_OPTION_NAMES_13, "command_sub_errexit");
1660GLOBAL_STR(kSHOPT_OPTION_NAMES_14, "complete_fullquote");
1661GLOBAL_STR(kSHOPT_OPTION_NAMES_15, "dashglob");
1662GLOBAL_STR(kSHOPT_OPTION_NAMES_16, "direxpand");
1663GLOBAL_STR(kSHOPT_OPTION_NAMES_17, "dirspell");
1664GLOBAL_STR(kSHOPT_OPTION_NAMES_18, "dotglob");
1665GLOBAL_STR(kSHOPT_OPTION_NAMES_19, "dynamic_scope");
1666GLOBAL_STR(kSHOPT_OPTION_NAMES_20, "eval_unsafe_arith");
1667GLOBAL_STR(kSHOPT_OPTION_NAMES_21, "execfail");
1668GLOBAL_STR(kSHOPT_OPTION_NAMES_22, "expand_aliases");
1669GLOBAL_STR(kSHOPT_OPTION_NAMES_23, "extdebug");
1670GLOBAL_STR(kSHOPT_OPTION_NAMES_24, "extglob");
1671GLOBAL_STR(kSHOPT_OPTION_NAMES_25, "extquote");
1672GLOBAL_STR(kSHOPT_OPTION_NAMES_26, "failglob");
1673GLOBAL_STR(kSHOPT_OPTION_NAMES_27, "force_fignore");
1674GLOBAL_STR(kSHOPT_OPTION_NAMES_28, "globasciiranges");
1675GLOBAL_STR(kSHOPT_OPTION_NAMES_29, "globstar");
1676GLOBAL_STR(kSHOPT_OPTION_NAMES_30, "gnu_errfmt");
1677GLOBAL_STR(kSHOPT_OPTION_NAMES_31, "histappend");
1678GLOBAL_STR(kSHOPT_OPTION_NAMES_32, "histreedit");
1679GLOBAL_STR(kSHOPT_OPTION_NAMES_33, "histverify");
1680GLOBAL_STR(kSHOPT_OPTION_NAMES_34, "hostcomplete");
1681GLOBAL_STR(kSHOPT_OPTION_NAMES_35, "huponexit");
1682GLOBAL_STR(kSHOPT_OPTION_NAMES_36, "inherit_errexit");
1683GLOBAL_STR(kSHOPT_OPTION_NAMES_37, "interactive_comments");
1684GLOBAL_STR(kSHOPT_OPTION_NAMES_38, "lastpipe");
1685GLOBAL_STR(kSHOPT_OPTION_NAMES_39, "lithist");
1686GLOBAL_STR(kSHOPT_OPTION_NAMES_40, "localvar_inherit");
1687GLOBAL_STR(kSHOPT_OPTION_NAMES_41, "localvar_unset");
1688GLOBAL_STR(kSHOPT_OPTION_NAMES_42, "login_shell");
1689GLOBAL_STR(kSHOPT_OPTION_NAMES_43, "mailwarn");
1690GLOBAL_STR(kSHOPT_OPTION_NAMES_44, "no_empty_cmd_completion");
1691GLOBAL_STR(kSHOPT_OPTION_NAMES_45, "nocaseglob");
1692GLOBAL_STR(kSHOPT_OPTION_NAMES_46, "nocasematch");
1693GLOBAL_STR(kSHOPT_OPTION_NAMES_47, "nullglob");
1694GLOBAL_STR(kSHOPT_OPTION_NAMES_48, "parse_at");
1695GLOBAL_STR(kSHOPT_OPTION_NAMES_49, "parse_at_all");
1696GLOBAL_STR(kSHOPT_OPTION_NAMES_50, "parse_backslash");
1697GLOBAL_STR(kSHOPT_OPTION_NAMES_51, "parse_backticks");
1698GLOBAL_STR(kSHOPT_OPTION_NAMES_52, "parse_bare_word");
1699GLOBAL_STR(kSHOPT_OPTION_NAMES_53, "parse_brace");
1700GLOBAL_STR(kSHOPT_OPTION_NAMES_54, "parse_bracket");
1701GLOBAL_STR(kSHOPT_OPTION_NAMES_55, "parse_dbracket");
1702GLOBAL_STR(kSHOPT_OPTION_NAMES_56, "parse_dollar");
1703GLOBAL_STR(kSHOPT_OPTION_NAMES_57, "parse_dparen");
1704GLOBAL_STR(kSHOPT_OPTION_NAMES_58, "parse_equals");
1705GLOBAL_STR(kSHOPT_OPTION_NAMES_59, "parse_func");
1706GLOBAL_STR(kSHOPT_OPTION_NAMES_60, "parse_ignored");
1707GLOBAL_STR(kSHOPT_OPTION_NAMES_61, "parse_paren");
1708GLOBAL_STR(kSHOPT_OPTION_NAMES_62, "parse_proc");
1709GLOBAL_STR(kSHOPT_OPTION_NAMES_63, "parse_sh_arith");
1710GLOBAL_STR(kSHOPT_OPTION_NAMES_64, "parse_triple_quote");
1711GLOBAL_STR(kSHOPT_OPTION_NAMES_65, "parse_ysh_string");
1712GLOBAL_STR(kSHOPT_OPTION_NAMES_66, "process_sub_fail");
1713GLOBAL_STR(kSHOPT_OPTION_NAMES_67, "progcomp");
1714GLOBAL_STR(kSHOPT_OPTION_NAMES_68, "progcomp_alias");
1715GLOBAL_STR(kSHOPT_OPTION_NAMES_69, "promptvars");
1716GLOBAL_STR(kSHOPT_OPTION_NAMES_70, "redefine_module");
1717GLOBAL_STR(kSHOPT_OPTION_NAMES_71, "redefine_proc_func");
1718GLOBAL_STR(kSHOPT_OPTION_NAMES_72, "restricted_shell");
1719GLOBAL_STR(kSHOPT_OPTION_NAMES_73, "shift_verbose");
1720GLOBAL_STR(kSHOPT_OPTION_NAMES_74, "sigpipe_status_ok");
1721GLOBAL_STR(kSHOPT_OPTION_NAMES_75, "simple_echo");
1722GLOBAL_STR(kSHOPT_OPTION_NAMES_76, "simple_eval_builtin");
1723GLOBAL_STR(kSHOPT_OPTION_NAMES_77, "simple_test_builtin");
1724GLOBAL_STR(kSHOPT_OPTION_NAMES_78, "simple_word_eval");
1725GLOBAL_STR(kSHOPT_OPTION_NAMES_79, "sourcepath");
1726GLOBAL_STR(kSHOPT_OPTION_NAMES_80, "strict_argv");
1727GLOBAL_STR(kSHOPT_OPTION_NAMES_81, "strict_arith");
1728GLOBAL_STR(kSHOPT_OPTION_NAMES_82, "strict_array");
1729GLOBAL_STR(kSHOPT_OPTION_NAMES_83, "strict_control_flow");
1730GLOBAL_STR(kSHOPT_OPTION_NAMES_84, "strict_errexit");
1731GLOBAL_STR(kSHOPT_OPTION_NAMES_85, "strict_glob");
1732GLOBAL_STR(kSHOPT_OPTION_NAMES_86, "strict_nameref");
1733GLOBAL_STR(kSHOPT_OPTION_NAMES_87, "strict_tilde");
1734GLOBAL_STR(kSHOPT_OPTION_NAMES_88, "strict_word_eval");
1735GLOBAL_STR(kSHOPT_OPTION_NAMES_89, "verbose_errexit");
1736GLOBAL_STR(kSHOPT_OPTION_NAMES_90, "xpg_echo");
1737GLOBAL_STR(kSHOPT_OPTION_NAMES_91, "xtrace_details");
1738GLOBAL_STR(kSHOPT_OPTION_NAMES_92, "xtrace_rich");
1739GLOBAL_LIST(SHOPT_OPTION_NAMES, BigStr*, 93, {kSHOPT_OPTION_NAMES_0 COMMA kSHOPT_OPTION_NAMES_1 COMMA kSHOPT_OPTION_NAMES_2 COMMA kSHOPT_OPTION_NAMES_3 COMMA kSHOPT_OPTION_NAMES_4 COMMA kSHOPT_OPTION_NAMES_5 COMMA kSHOPT_OPTION_NAMES_6 COMMA kSHOPT_OPTION_NAMES_7 COMMA kSHOPT_OPTION_NAMES_8 COMMA kSHOPT_OPTION_NAMES_9 COMMA kSHOPT_OPTION_NAMES_10 COMMA kSHOPT_OPTION_NAMES_11 COMMA kSHOPT_OPTION_NAMES_12 COMMA kSHOPT_OPTION_NAMES_13 COMMA kSHOPT_OPTION_NAMES_14 COMMA kSHOPT_OPTION_NAMES_15 COMMA kSHOPT_OPTION_NAMES_16 COMMA kSHOPT_OPTION_NAMES_17 COMMA kSHOPT_OPTION_NAMES_18 COMMA kSHOPT_OPTION_NAMES_19 COMMA kSHOPT_OPTION_NAMES_20 COMMA kSHOPT_OPTION_NAMES_21 COMMA kSHOPT_OPTION_NAMES_22 COMMA kSHOPT_OPTION_NAMES_23 COMMA kSHOPT_OPTION_NAMES_24 COMMA kSHOPT_OPTION_NAMES_25 COMMA kSHOPT_OPTION_NAMES_26 COMMA kSHOPT_OPTION_NAMES_27 COMMA kSHOPT_OPTION_NAMES_28 COMMA kSHOPT_OPTION_NAMES_29 COMMA kSHOPT_OPTION_NAMES_30 COMMA kSHOPT_OPTION_NAMES_31 COMMA kSHOPT_OPTION_NAMES_32 COMMA kSHOPT_OPTION_NAMES_33 COMMA kSHOPT_OPTION_NAMES_34 COMMA kSHOPT_OPTION_NAMES_35 COMMA kSHOPT_OPTION_NAMES_36 COMMA kSHOPT_OPTION_NAMES_37 COMMA kSHOPT_OPTION_NAMES_38 COMMA kSHOPT_OPTION_NAMES_39 COMMA kSHOPT_OPTION_NAMES_40 COMMA kSHOPT_OPTION_NAMES_41 COMMA kSHOPT_OPTION_NAMES_42 COMMA kSHOPT_OPTION_NAMES_43 COMMA kSHOPT_OPTION_NAMES_44 COMMA kSHOPT_OPTION_NAMES_45 COMMA kSHOPT_OPTION_NAMES_46 COMMA kSHOPT_OPTION_NAMES_47 COMMA kSHOPT_OPTION_NAMES_48 COMMA kSHOPT_OPTION_NAMES_49 COMMA kSHOPT_OPTION_NAMES_50 COMMA kSHOPT_OPTION_NAMES_51 COMMA kSHOPT_OPTION_NAMES_52 COMMA kSHOPT_OPTION_NAMES_53 COMMA kSHOPT_OPTION_NAMES_54 COMMA kSHOPT_OPTION_NAMES_55 COMMA kSHOPT_OPTION_NAMES_56 COMMA kSHOPT_OPTION_NAMES_57 COMMA kSHOPT_OPTION_NAMES_58 COMMA kSHOPT_OPTION_NAMES_59 COMMA kSHOPT_OPTION_NAMES_60 COMMA kSHOPT_OPTION_NAMES_61 COMMA kSHOPT_OPTION_NAMES_62 COMMA kSHOPT_OPTION_NAMES_63 COMMA kSHOPT_OPTION_NAMES_64 COMMA kSHOPT_OPTION_NAMES_65 COMMA kSHOPT_OPTION_NAMES_66 COMMA kSHOPT_OPTION_NAMES_67 COMMA kSHOPT_OPTION_NAMES_68 COMMA kSHOPT_OPTION_NAMES_69 COMMA kSHOPT_OPTION_NAMES_70 COMMA kSHOPT_OPTION_NAMES_71 COMMA kSHOPT_OPTION_NAMES_72 COMMA kSHOPT_OPTION_NAMES_73 COMMA kSHOPT_OPTION_NAMES_74 COMMA kSHOPT_OPTION_NAMES_75 COMMA kSHOPT_OPTION_NAMES_76 COMMA kSHOPT_OPTION_NAMES_77 COMMA kSHOPT_OPTION_NAMES_78 COMMA kSHOPT_OPTION_NAMES_79 COMMA kSHOPT_OPTION_NAMES_80 COMMA kSHOPT_OPTION_NAMES_81 COMMA kSHOPT_OPTION_NAMES_82 COMMA kSHOPT_OPTION_NAMES_83 COMMA kSHOPT_OPTION_NAMES_84 COMMA kSHOPT_OPTION_NAMES_85 COMMA kSHOPT_OPTION_NAMES_86 COMMA kSHOPT_OPTION_NAMES_87 COMMA kSHOPT_OPTION_NAMES_88 COMMA kSHOPT_OPTION_NAMES_89 COMMA kSHOPT_OPTION_NAMES_90 COMMA kSHOPT_OPTION_NAMES_91 COMMA kSHOPT_OPTION_NAMES_92});
1740
1741} // namespace consts
1742