-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.out
556 lines (491 loc) · 21.1 KB
/
parser.out
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
PARSER
Parser Object size: 142128
RULES
0 text <- rest
1 text <- options rest
2 text <- options
3 option_value <- alpha_numeric
4 option_value <- option_char
5 option_value <- whitespace
6 option_value <- \;
7 option_value <- option_value option_char
8 option_value <- option_value \;
9 option_value <- option_value alpha_numeric
10 option_value <- option_value whitespace
11 options <- option_element
12 options <- options option_element
13 option_element <- % alpha_numeric whitespace option_value ;
14 option_element <- whitespace % alpha_numeric whitespace option_value ;
15 rest <- alpha_numeric
16 rest <- alpha_numeric
17 rest <- whitespace
18 rest <- option_char
19 rest <- rest option_char
20 rest <-
21 ## <- text
STATES
STATE 0
text <- . rest ==> <eof>
text <- . options rest ==> <eof>
text <- . options ==> <eof>
options <- . option_element ==> %
options <- . option_element ==> whitespace
options <- . option_element ==> alpha_numeric
options <- . option_element ==> option_char
options <- . option_element ==> <eof>
options <- . options option_element ==> %
options <- . options option_element ==> whitespace
options <- . options option_element ==> alpha_numeric
options <- . options option_element ==> option_char
options <- . options option_element ==> <eof>
option_element <- . % alpha_numeric whitespace option_value ; ==> %
option_element <- . % alpha_numeric whitespace option_value ; ==> whitespace
option_element <- . % alpha_numeric whitespace option_value ; ==> alpha_numeric
option_element <- . % alpha_numeric whitespace option_value ; ==> option_char
option_element <- . % alpha_numeric whitespace option_value ; ==> <eof>
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> %
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> whitespace
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> alpha_numeric
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> option_char
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> <eof>
rest <- . alpha_numeric ==> option_char
rest <- . alpha_numeric ==> <eof>
rest <- . alpha_numeric ==> option_char
rest <- . alpha_numeric ==> <eof>
rest <- . whitespace ==> option_char
rest <- . whitespace ==> <eof>
rest <- . option_char ==> option_char
rest <- . option_char ==> <eof>
rest <- . rest option_char ==> option_char
rest <- . rest option_char ==> <eof>
rest <- . ==> option_char
rest <- . ==> <eof>
## <- . text ==> <eof>
On text go to 1
On options go to 3
On option_element go to 7
On rest go to 2
On % shift to 10
On whitespace shift to 5
On alpha_numeric shift to 4
On option_char shift to 6 S/R CONFLICT, prefer shift over reduce(20)
On <eof> reduce using (20)
STATE 1
## <- text . ==> <eof>
On <eof> success
STATE 2
text <- rest . ==> <eof>
rest <- rest . option_char ==> option_char
rest <- rest . option_char ==> <eof>
On option_char shift to 9
On <eof> reduce using (0)
STATE 3
text <- options . rest ==> <eof>
text <- options . ==> <eof>
options <- options . option_element ==> %
options <- options . option_element ==> whitespace
options <- options . option_element ==> alpha_numeric
options <- options . option_element ==> option_char
options <- options . option_element ==> <eof>
option_element <- . % alpha_numeric whitespace option_value ; ==> %
option_element <- . % alpha_numeric whitespace option_value ; ==> whitespace
option_element <- . % alpha_numeric whitespace option_value ; ==> alpha_numeric
option_element <- . % alpha_numeric whitespace option_value ; ==> option_char
option_element <- . % alpha_numeric whitespace option_value ; ==> <eof>
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> %
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> whitespace
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> alpha_numeric
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> option_char
option_element <- . whitespace % alpha_numeric whitespace option_value ; ==> <eof>
rest <- . alpha_numeric ==> option_char
rest <- . alpha_numeric ==> <eof>
rest <- . alpha_numeric ==> option_char
rest <- . alpha_numeric ==> <eof>
rest <- . whitespace ==> option_char
rest <- . whitespace ==> <eof>
rest <- . option_char ==> option_char
rest <- . option_char ==> <eof>
rest <- . rest option_char ==> option_char
rest <- . rest option_char ==> <eof>
rest <- . ==> option_char
rest <- . ==> <eof>
On option_element go to 11
On rest go to 8
On % shift to 10
On whitespace shift to 5
On alpha_numeric shift to 4
On option_char shift to 6 S/R CONFLICT, prefer shift over reduce(20)
On <eof> R/R CONFLICT - !!! FIX IT !!!
STATE 4
rest <- alpha_numeric . ==> option_char
rest <- alpha_numeric . ==> <eof>
rest <- alpha_numeric . ==> option_char
rest <- alpha_numeric . ==> <eof>
On option_char R/R CONFLICT - !!! FIX IT !!!
On <eof> R/R CONFLICT - !!! FIX IT !!!
STATE 5
option_element <- whitespace . % alpha_numeric whitespace option_value ; ==> %
option_element <- whitespace . % alpha_numeric whitespace option_value ; ==> whitespace
option_element <- whitespace . % alpha_numeric whitespace option_value ; ==> alpha_numeric
option_element <- whitespace . % alpha_numeric whitespace option_value ; ==> option_char
option_element <- whitespace . % alpha_numeric whitespace option_value ; ==> <eof>
rest <- whitespace . ==> option_char
rest <- whitespace . ==> <eof>
On % shift to 13
On option_char reduce using (17)
On <eof> reduce using (17)
STATE 6
rest <- option_char . ==> option_char
rest <- option_char . ==> <eof>
On option_char reduce using (18)
On <eof> reduce using (18)
STATE 7
options <- option_element . ==> %
options <- option_element . ==> whitespace
options <- option_element . ==> alpha_numeric
options <- option_element . ==> option_char
options <- option_element . ==> <eof>
On % reduce using (3)
On whitespace reduce using (3)
On alpha_numeric reduce using (3)
On option_char reduce using (3)
On <eof> reduce using (3)
STATE 8
text <- options rest . ==> <eof>
rest <- rest . option_char ==> option_char
rest <- rest . option_char ==> <eof>
On option_char shift to 9
On <eof> reduce using (1)
STATE 9
rest <- rest option_char . ==> option_char
rest <- rest option_char . ==> <eof>
On option_char reduce using (19)
On <eof> reduce using (19)
STATE 10
option_element <- % . alpha_numeric whitespace option_value ; ==> %
option_element <- % . alpha_numeric whitespace option_value ; ==> whitespace
option_element <- % . alpha_numeric whitespace option_value ; ==> alpha_numeric
option_element <- % . alpha_numeric whitespace option_value ; ==> option_char
option_element <- % . alpha_numeric whitespace option_value ; ==> <eof>
On alpha_numeric shift to 12
STATE 11
options <- options option_element . ==> %
options <- options option_element . ==> whitespace
options <- options option_element . ==> alpha_numeric
options <- options option_element . ==> option_char
options <- options option_element . ==> <eof>
On % reduce using (4)
On whitespace reduce using (4)
On alpha_numeric reduce using (4)
On option_char reduce using (4)
On <eof> reduce using (4)
STATE 12
option_element <- % alpha_numeric . whitespace option_value ; ==> %
option_element <- % alpha_numeric . whitespace option_value ; ==> whitespace
option_element <- % alpha_numeric . whitespace option_value ; ==> alpha_numeric
option_element <- % alpha_numeric . whitespace option_value ; ==> option_char
option_element <- % alpha_numeric . whitespace option_value ; ==> <eof>
On whitespace shift to 14
STATE 13
option_element <- whitespace % . alpha_numeric whitespace option_value ; ==> %
option_element <- whitespace % . alpha_numeric whitespace option_value ; ==> whitespace
option_element <- whitespace % . alpha_numeric whitespace option_value ; ==> alpha_numeric
option_element <- whitespace % . alpha_numeric whitespace option_value ; ==> option_char
option_element <- whitespace % . alpha_numeric whitespace option_value ; ==> <eof>
On alpha_numeric shift to 15
STATE 14
option_value <- . alpha_numeric ==> \;
option_value <- . alpha_numeric ==> whitespace
option_value <- . alpha_numeric ==> ;
option_value <- . alpha_numeric ==> alpha_numeric
option_value <- . alpha_numeric ==> option_char
option_value <- . option_char ==> \;
option_value <- . option_char ==> whitespace
option_value <- . option_char ==> ;
option_value <- . option_char ==> alpha_numeric
option_value <- . option_char ==> option_char
option_value <- . whitespace ==> \;
option_value <- . whitespace ==> whitespace
option_value <- . whitespace ==> ;
option_value <- . whitespace ==> alpha_numeric
option_value <- . whitespace ==> option_char
option_value <- . \; ==> \;
option_value <- . \; ==> whitespace
option_value <- . \; ==> ;
option_value <- . \; ==> alpha_numeric
option_value <- . \; ==> option_char
option_value <- . option_value option_char ==> \;
option_value <- . option_value option_char ==> whitespace
option_value <- . option_value option_char ==> ;
option_value <- . option_value option_char ==> alpha_numeric
option_value <- . option_value option_char ==> option_char
option_value <- . option_value \; ==> \;
option_value <- . option_value \; ==> whitespace
option_value <- . option_value \; ==> ;
option_value <- . option_value \; ==> alpha_numeric
option_value <- . option_value \; ==> option_char
option_value <- . option_value alpha_numeric ==> \;
option_value <- . option_value alpha_numeric ==> whitespace
option_value <- . option_value alpha_numeric ==> ;
option_value <- . option_value alpha_numeric ==> alpha_numeric
option_value <- . option_value alpha_numeric ==> option_char
option_value <- . option_value whitespace ==> \;
option_value <- . option_value whitespace ==> whitespace
option_value <- . option_value whitespace ==> ;
option_value <- . option_value whitespace ==> alpha_numeric
option_value <- . option_value whitespace ==> option_char
option_element <- % alpha_numeric whitespace . option_value ; ==> %
option_element <- % alpha_numeric whitespace . option_value ; ==> whitespace
option_element <- % alpha_numeric whitespace . option_value ; ==> alpha_numeric
option_element <- % alpha_numeric whitespace . option_value ; ==> option_char
option_element <- % alpha_numeric whitespace . option_value ; ==> <eof>
On option_value go to 16
On \; shift to 21
On whitespace shift to 20
On alpha_numeric shift to 18
On option_char shift to 19
STATE 15
option_element <- whitespace % alpha_numeric . whitespace option_value ; ==> %
option_element <- whitespace % alpha_numeric . whitespace option_value ; ==> whitespace
option_element <- whitespace % alpha_numeric . whitespace option_value ; ==> alpha_numeric
option_element <- whitespace % alpha_numeric . whitespace option_value ; ==> option_char
option_element <- whitespace % alpha_numeric . whitespace option_value ; ==> <eof>
On whitespace shift to 17
STATE 16
option_value <- option_value . option_char ==> \;
option_value <- option_value . option_char ==> whitespace
option_value <- option_value . option_char ==> ;
option_value <- option_value . option_char ==> alpha_numeric
option_value <- option_value . option_char ==> option_char
option_value <- option_value . \; ==> \;
option_value <- option_value . \; ==> whitespace
option_value <- option_value . \; ==> ;
option_value <- option_value . \; ==> alpha_numeric
option_value <- option_value . \; ==> option_char
option_value <- option_value . alpha_numeric ==> \;
option_value <- option_value . alpha_numeric ==> whitespace
option_value <- option_value . alpha_numeric ==> ;
option_value <- option_value . alpha_numeric ==> alpha_numeric
option_value <- option_value . alpha_numeric ==> option_char
option_value <- option_value . whitespace ==> \;
option_value <- option_value . whitespace ==> whitespace
option_value <- option_value . whitespace ==> ;
option_value <- option_value . whitespace ==> alpha_numeric
option_value <- option_value . whitespace ==> option_char
option_element <- % alpha_numeric whitespace option_value . ; ==> %
option_element <- % alpha_numeric whitespace option_value . ; ==> whitespace
option_element <- % alpha_numeric whitespace option_value . ; ==> alpha_numeric
option_element <- % alpha_numeric whitespace option_value . ; ==> option_char
option_element <- % alpha_numeric whitespace option_value . ; ==> <eof>
On \; shift to 25
On whitespace shift to 27
On ; shift to 22
On alpha_numeric shift to 26
On option_char shift to 24
STATE 17
option_value <- . alpha_numeric ==> \;
option_value <- . alpha_numeric ==> whitespace
option_value <- . alpha_numeric ==> ;
option_value <- . alpha_numeric ==> alpha_numeric
option_value <- . alpha_numeric ==> option_char
option_value <- . option_char ==> \;
option_value <- . option_char ==> whitespace
option_value <- . option_char ==> ;
option_value <- . option_char ==> alpha_numeric
option_value <- . option_char ==> option_char
option_value <- . whitespace ==> \;
option_value <- . whitespace ==> whitespace
option_value <- . whitespace ==> ;
option_value <- . whitespace ==> alpha_numeric
option_value <- . whitespace ==> option_char
option_value <- . \; ==> \;
option_value <- . \; ==> whitespace
option_value <- . \; ==> ;
option_value <- . \; ==> alpha_numeric
option_value <- . \; ==> option_char
option_value <- . option_value option_char ==> \;
option_value <- . option_value option_char ==> whitespace
option_value <- . option_value option_char ==> ;
option_value <- . option_value option_char ==> alpha_numeric
option_value <- . option_value option_char ==> option_char
option_value <- . option_value \; ==> \;
option_value <- . option_value \; ==> whitespace
option_value <- . option_value \; ==> ;
option_value <- . option_value \; ==> alpha_numeric
option_value <- . option_value \; ==> option_char
option_value <- . option_value alpha_numeric ==> \;
option_value <- . option_value alpha_numeric ==> whitespace
option_value <- . option_value alpha_numeric ==> ;
option_value <- . option_value alpha_numeric ==> alpha_numeric
option_value <- . option_value alpha_numeric ==> option_char
option_value <- . option_value whitespace ==> \;
option_value <- . option_value whitespace ==> whitespace
option_value <- . option_value whitespace ==> ;
option_value <- . option_value whitespace ==> alpha_numeric
option_value <- . option_value whitespace ==> option_char
option_element <- whitespace % alpha_numeric whitespace . option_value ; ==> %
option_element <- whitespace % alpha_numeric whitespace . option_value ; ==> whitespace
option_element <- whitespace % alpha_numeric whitespace . option_value ; ==> alpha_numeric
option_element <- whitespace % alpha_numeric whitespace . option_value ; ==> option_char
option_element <- whitespace % alpha_numeric whitespace . option_value ; ==> <eof>
On option_value go to 23
On \; shift to 21
On whitespace shift to 20
On alpha_numeric shift to 18
On option_char shift to 19
STATE 18
option_value <- alpha_numeric . ==> \;
option_value <- alpha_numeric . ==> whitespace
option_value <- alpha_numeric . ==> ;
option_value <- alpha_numeric . ==> alpha_numeric
option_value <- alpha_numeric . ==> option_char
On \; reduce using (7)
On whitespace reduce using (7)
On ; reduce using (7)
On alpha_numeric reduce using (7)
On option_char reduce using (7)
STATE 19
option_value <- option_char . ==> \;
option_value <- option_char . ==> whitespace
option_value <- option_char . ==> ;
option_value <- option_char . ==> alpha_numeric
option_value <- option_char . ==> option_char
On \; reduce using (8)
On whitespace reduce using (8)
On ; reduce using (8)
On alpha_numeric reduce using (8)
On option_char reduce using (8)
STATE 20
option_value <- whitespace . ==> \;
option_value <- whitespace . ==> whitespace
option_value <- whitespace . ==> ;
option_value <- whitespace . ==> alpha_numeric
option_value <- whitespace . ==> option_char
On \; reduce using (9)
On whitespace reduce using (9)
On ; reduce using (9)
On alpha_numeric reduce using (9)
On option_char reduce using (9)
STATE 21
option_value <- \; . ==> \;
option_value <- \; . ==> whitespace
option_value <- \; . ==> ;
option_value <- \; . ==> alpha_numeric
option_value <- \; . ==> option_char
On \; reduce using (10)
On whitespace reduce using (10)
On ; reduce using (10)
On alpha_numeric reduce using (10)
On option_char reduce using (10)
STATE 22
option_element <- % alpha_numeric whitespace option_value ; . ==> %
option_element <- % alpha_numeric whitespace option_value ; . ==> whitespace
option_element <- % alpha_numeric whitespace option_value ; . ==> alpha_numeric
option_element <- % alpha_numeric whitespace option_value ; . ==> option_char
option_element <- % alpha_numeric whitespace option_value ; . ==> <eof>
On % reduce using (5)
On whitespace reduce using (5)
On alpha_numeric reduce using (5)
On option_char reduce using (5)
On <eof> reduce using (5)
STATE 23
option_value <- option_value . option_char ==> \;
option_value <- option_value . option_char ==> whitespace
option_value <- option_value . option_char ==> ;
option_value <- option_value . option_char ==> alpha_numeric
option_value <- option_value . option_char ==> option_char
option_value <- option_value . \; ==> \;
option_value <- option_value . \; ==> whitespace
option_value <- option_value . \; ==> ;
option_value <- option_value . \; ==> alpha_numeric
option_value <- option_value . \; ==> option_char
option_value <- option_value . alpha_numeric ==> \;
option_value <- option_value . alpha_numeric ==> whitespace
option_value <- option_value . alpha_numeric ==> ;
option_value <- option_value . alpha_numeric ==> alpha_numeric
option_value <- option_value . alpha_numeric ==> option_char
option_value <- option_value . whitespace ==> \;
option_value <- option_value . whitespace ==> whitespace
option_value <- option_value . whitespace ==> ;
option_value <- option_value . whitespace ==> alpha_numeric
option_value <- option_value . whitespace ==> option_char
option_element <- whitespace % alpha_numeric whitespace option_value . ; ==> %
option_element <- whitespace % alpha_numeric whitespace option_value . ; ==> whitespace
option_element <- whitespace % alpha_numeric whitespace option_value . ; ==> alpha_numeric
option_element <- whitespace % alpha_numeric whitespace option_value . ; ==> option_char
option_element <- whitespace % alpha_numeric whitespace option_value . ; ==> <eof>
On \; shift to 25
On whitespace shift to 27
On ; shift to 28
On alpha_numeric shift to 26
On option_char shift to 24
STATE 24
option_value <- option_value option_char . ==> \;
option_value <- option_value option_char . ==> whitespace
option_value <- option_value option_char . ==> ;
option_value <- option_value option_char . ==> alpha_numeric
option_value <- option_value option_char . ==> option_char
On \; reduce using (11)
On whitespace reduce using (11)
On ; reduce using (11)
On alpha_numeric reduce using (11)
On option_char reduce using (11)
STATE 25
option_value <- option_value \; . ==> \;
option_value <- option_value \; . ==> whitespace
option_value <- option_value \; . ==> ;
option_value <- option_value \; . ==> alpha_numeric
option_value <- option_value \; . ==> option_char
On \; reduce using (12)
On whitespace reduce using (12)
On ; reduce using (12)
On alpha_numeric reduce using (12)
On option_char reduce using (12)
STATE 26
option_value <- option_value alpha_numeric . ==> \;
option_value <- option_value alpha_numeric . ==> whitespace
option_value <- option_value alpha_numeric . ==> ;
option_value <- option_value alpha_numeric . ==> alpha_numeric
option_value <- option_value alpha_numeric . ==> option_char
On \; reduce using (13)
On whitespace reduce using (13)
On ; reduce using (13)
On alpha_numeric reduce using (13)
On option_char reduce using (13)
STATE 27
option_value <- option_value whitespace . ==> \;
option_value <- option_value whitespace . ==> whitespace
option_value <- option_value whitespace . ==> ;
option_value <- option_value whitespace . ==> alpha_numeric
option_value <- option_value whitespace . ==> option_char
On \; reduce using (14)
On whitespace reduce using (14)
On ; reduce using (14)
On alpha_numeric reduce using (14)
On option_char reduce using (14)
STATE 28
option_element <- whitespace % alpha_numeric whitespace option_value ; . ==> %
option_element <- whitespace % alpha_numeric whitespace option_value ; . ==> whitespace
option_element <- whitespace % alpha_numeric whitespace option_value ; . ==> alpha_numeric
option_element <- whitespace % alpha_numeric whitespace option_value ; . ==> option_char
option_element <- whitespace % alpha_numeric whitespace option_value ; . ==> <eof>
On % reduce using (6)
On whitespace reduce using (6)
On alpha_numeric reduce using (6)
On option_char reduce using (6)
On <eof> reduce using (6)
LEXICAL ANALYZER
STATE 0 [\x00 - \x08] -> 13 \x09 -> 7 [\x0A - \x1F] -> 13 \x20 -> 7 [! - $] -> 13 % -> 1 [& - /] -> 13 [0 - 9] -> 11 : -> 13 ; -> 9 [< - @] -> 13 [A - Z] -> 11 [ -> 13 \ -> 3 ] -> 13 ^ -> 13 _ -> 11 ` -> 13 [a - z] -> 11 [{ - \xFF] -> 13
STATE 1 recognized %
STATE 2 (unreachable)
STATE 3 recognized option_char ; -> 5
STATE 4 (unreachable)
STATE 5 recognized \;
STATE 6 (unreachable)
STATE 7 recognized whitespace \x09 -> 7 \x20 -> 7
STATE 8 (unreachable)
STATE 9 recognized ;
STATE 10 (unreachable)
STATE 11 recognized alpha_numeric [0 - 9] -> 11 [A - Z] -> 11 _ -> 11 [a - z] -> 11
STATE 12 (unreachable)
STATE 13 recognized option_char