tabry 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/tabry/config_builder/arg_or_flag_builder.rb +5 -0
- data/lib/tabry/config_builder/top_level_builder.rb +2 -0
- data/lib/tabry/machine.rb +1 -1
- data/lib/tabry/models/method_option.rb +14 -0
- data/lib/tabry/models/option.rb +5 -5
- data/lib/tabry/replty/base.rb +23 -0
- data/lib/tabry/replty/builder.rb +100 -0
- data/lib/tabry/shell_tokenizer.rb +50 -0
- data/lib/tabry/shells/bash/wrapper.rb +2 -2
- data/sh/fish/tabry_fish.fish +7 -4
- data/spec/fixtures/config_builder/underscoresdashes.yml +1 -1
- data/spec/fixtures/vehicles-expectations.json +351 -0
- data/spec/tabry/machine_spec.rb +5 -82
- data/spec/tabry/shell_tokenizer_spec.rb +34 -0
- data/tabry.gemspec +1 -1
- data/treesitter/corpus/opts.txt +2 -0
- data/treesitter/grammar.js +7 -0
- data/treesitter/src/grammar.json +21 -0
- data/treesitter/src/node-types.json +23 -0
- data/treesitter/src/parser.c +959 -893
- data/treesitter/tabry-compile.js +6 -0
- metadata +9 -5
- data/lib/tabry/shell_splitter.rb +0 -34
- data/spec/tabry/shell_splitter_spec.rb +0 -22
data/treesitter/src/parser.c
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
#endif
|
7
7
|
|
8
8
|
#define LANGUAGE_VERSION 13
|
9
|
-
#define STATE_COUNT
|
9
|
+
#define STATE_COUNT 139
|
10
10
|
#define LARGE_STATE_COUNT 4
|
11
|
-
#define SYMBOL_COUNT
|
11
|
+
#define SYMBOL_COUNT 59
|
12
12
|
#define ALIAS_COUNT 0
|
13
|
-
#define TOKEN_COUNT
|
13
|
+
#define TOKEN_COUNT 27
|
14
14
|
#define EXTERNAL_TOKEN_COUNT 0
|
15
15
|
#define FIELD_COUNT 3
|
16
16
|
#define MAX_ALIAS_SEQUENCE_LENGTH 6
|
@@ -33,46 +33,48 @@ enum {
|
|
33
33
|
anon_sym_shell = 14,
|
34
34
|
anon_sym_file = 15,
|
35
35
|
anon_sym_dir = 16,
|
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
|
-
|
36
|
+
anon_sym_method = 17,
|
37
|
+
anon_sym_flagarg = 18,
|
38
|
+
anon_sym_flag = 19,
|
39
|
+
anon_sym_reqd = 20,
|
40
|
+
sym_arg_modifier = 21,
|
41
|
+
anon_sym_LBRACE = 22,
|
42
|
+
anon_sym_RBRACE = 23,
|
43
|
+
sym_string = 24,
|
44
|
+
anon_sym_LPAREN = 25,
|
45
|
+
anon_sym_RPAREN = 26,
|
46
|
+
sym_source_file = 27,
|
47
|
+
sym__toplevel_statement = 28,
|
48
|
+
sym__common_statement = 29,
|
49
|
+
sym__block_statement = 30,
|
50
|
+
sym_include_statement = 31,
|
51
|
+
sym_defopts_statement = 32,
|
52
|
+
sym_defargs_statement = 33,
|
53
|
+
sym_sub_statement = 34,
|
54
|
+
sym_cmd_statement = 35,
|
55
|
+
sym_desc_statement = 36,
|
56
|
+
sym_title_statement = 37,
|
57
|
+
sym_arg_type = 38,
|
58
|
+
sym_arg_statement = 39,
|
59
|
+
sym_opts_const_statement = 40,
|
60
|
+
sym_opts_shell_statement = 41,
|
61
|
+
sym_opts_file_statement = 42,
|
62
|
+
sym_opts_dir_statement = 43,
|
63
|
+
sym_opts_method_statement = 44,
|
64
|
+
sym_flagarg_statement = 45,
|
65
|
+
sym_flag_statement = 46,
|
66
|
+
sym_flag_modifier = 47,
|
67
|
+
sym_block = 48,
|
68
|
+
sym_flag_name_list = 49,
|
69
|
+
sym_arg_name_list = 50,
|
70
|
+
sym_sub_name_list = 51,
|
71
|
+
sym__strings = 52,
|
72
|
+
sym__strings_list = 53,
|
73
|
+
aux_sym_source_file_repeat1 = 54,
|
74
|
+
aux_sym_sub_statement_repeat1 = 55,
|
75
|
+
aux_sym_arg_statement_repeat1 = 56,
|
76
|
+
aux_sym_block_repeat1 = 57,
|
77
|
+
aux_sym__strings_list_repeat1 = 58,
|
76
78
|
};
|
77
79
|
|
78
80
|
static const char * const ts_symbol_names[] = {
|
@@ -93,6 +95,7 @@ static const char * const ts_symbol_names[] = {
|
|
93
95
|
[anon_sym_shell] = "shell",
|
94
96
|
[anon_sym_file] = "file",
|
95
97
|
[anon_sym_dir] = "dir",
|
98
|
+
[anon_sym_method] = "method",
|
96
99
|
[anon_sym_flagarg] = "flagarg",
|
97
100
|
[anon_sym_flag] = "flag",
|
98
101
|
[anon_sym_reqd] = "reqd",
|
@@ -119,6 +122,7 @@ static const char * const ts_symbol_names[] = {
|
|
119
122
|
[sym_opts_shell_statement] = "opts_shell_statement",
|
120
123
|
[sym_opts_file_statement] = "opts_file_statement",
|
121
124
|
[sym_opts_dir_statement] = "opts_dir_statement",
|
125
|
+
[sym_opts_method_statement] = "opts_method_statement",
|
122
126
|
[sym_flagarg_statement] = "flagarg_statement",
|
123
127
|
[sym_flag_statement] = "flag_statement",
|
124
128
|
[sym_flag_modifier] = "flag_modifier",
|
@@ -153,6 +157,7 @@ static const TSSymbol ts_symbol_map[] = {
|
|
153
157
|
[anon_sym_shell] = anon_sym_shell,
|
154
158
|
[anon_sym_file] = anon_sym_file,
|
155
159
|
[anon_sym_dir] = anon_sym_dir,
|
160
|
+
[anon_sym_method] = anon_sym_method,
|
156
161
|
[anon_sym_flagarg] = anon_sym_flagarg,
|
157
162
|
[anon_sym_flag] = anon_sym_flag,
|
158
163
|
[anon_sym_reqd] = anon_sym_reqd,
|
@@ -179,6 +184,7 @@ static const TSSymbol ts_symbol_map[] = {
|
|
179
184
|
[sym_opts_shell_statement] = sym_opts_shell_statement,
|
180
185
|
[sym_opts_file_statement] = sym_opts_file_statement,
|
181
186
|
[sym_opts_dir_statement] = sym_opts_dir_statement,
|
187
|
+
[sym_opts_method_statement] = sym_opts_method_statement,
|
182
188
|
[sym_flagarg_statement] = sym_flagarg_statement,
|
183
189
|
[sym_flag_statement] = sym_flag_statement,
|
184
190
|
[sym_flag_modifier] = sym_flag_modifier,
|
@@ -264,6 +270,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = {
|
|
264
270
|
.visible = true,
|
265
271
|
.named = false,
|
266
272
|
},
|
273
|
+
[anon_sym_method] = {
|
274
|
+
.visible = true,
|
275
|
+
.named = false,
|
276
|
+
},
|
267
277
|
[anon_sym_flagarg] = {
|
268
278
|
.visible = true,
|
269
279
|
.named = false,
|
@@ -368,6 +378,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = {
|
|
368
378
|
.visible = true,
|
369
379
|
.named = true,
|
370
380
|
},
|
381
|
+
[sym_opts_method_statement] = {
|
382
|
+
.visible = true,
|
383
|
+
.named = true,
|
384
|
+
},
|
371
385
|
[sym_flagarg_statement] = {
|
372
386
|
.visible = true,
|
373
387
|
.named = true,
|
@@ -491,23 +505,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) {
|
|
491
505
|
eof = lexer->eof(lexer);
|
492
506
|
switch (state) {
|
493
507
|
case 0:
|
494
|
-
if (eof) ADVANCE(
|
495
|
-
if (lookahead == '#') ADVANCE(
|
496
|
-
if (lookahead == '(') ADVANCE(
|
497
|
-
if (lookahead == ')') ADVANCE(
|
498
|
-
if (lookahead == '@') ADVANCE(
|
499
|
-
if (lookahead == 'a') ADVANCE(
|
500
|
-
if (lookahead == 'c') ADVANCE(
|
501
|
-
if (lookahead == 'd') ADVANCE(
|
502
|
-
if (lookahead == 'f') ADVANCE(
|
503
|
-
if (lookahead == 'i') ADVANCE(
|
504
|
-
if (lookahead == '
|
505
|
-
if (lookahead == '
|
506
|
-
if (lookahead == '
|
507
|
-
if (lookahead == '
|
508
|
+
if (eof) ADVANCE(63);
|
509
|
+
if (lookahead == '#') ADVANCE(71);
|
510
|
+
if (lookahead == '(') ADVANCE(150);
|
511
|
+
if (lookahead == ')') ADVANCE(151);
|
512
|
+
if (lookahead == '@') ADVANCE(61);
|
513
|
+
if (lookahead == 'a') ADVANCE(44);
|
514
|
+
if (lookahead == 'c') ADVANCE(37);
|
515
|
+
if (lookahead == 'd') ADVANCE(15);
|
516
|
+
if (lookahead == 'f') ADVANCE(30);
|
517
|
+
if (lookahead == 'i') ADVANCE(38);
|
518
|
+
if (lookahead == 'm') ADVANCE(16);
|
519
|
+
if (lookahead == 'o') ADVANCE(41);
|
520
|
+
if (lookahead == 'r') ADVANCE(17);
|
521
|
+
if (lookahead == 's') ADVANCE(29);
|
522
|
+
if (lookahead == 't') ADVANCE(31);
|
508
523
|
if (lookahead == 'v') ADVANCE(5);
|
509
|
-
if (lookahead == '{') ADVANCE(
|
510
|
-
if (lookahead == '}') ADVANCE(
|
524
|
+
if (lookahead == '{') ADVANCE(100);
|
525
|
+
if (lookahead == '}') ADVANCE(101);
|
511
526
|
if (lookahead == '\t' ||
|
512
527
|
lookahead == '\n' ||
|
513
528
|
lookahead == '\r' ||
|
@@ -515,930 +530,948 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) {
|
|
515
530
|
END_STATE();
|
516
531
|
case 1:
|
517
532
|
if (lookahead == '"') ADVANCE(3);
|
518
|
-
if (lookahead == '#') ADVANCE(
|
519
|
-
if (lookahead == '(') ADVANCE(
|
520
|
-
if (lookahead == '@') ADVANCE(
|
521
|
-
if (lookahead == 'a') ADVANCE(
|
522
|
-
if (lookahead == 'd') ADVANCE(
|
523
|
-
if (lookahead == 'f') ADVANCE(
|
524
|
-
if (lookahead == 'i') ADVANCE(
|
525
|
-
if (lookahead == 'o') ADVANCE(
|
526
|
-
if (lookahead == 'r') ADVANCE(
|
527
|
-
if (lookahead == 's') ADVANCE(
|
528
|
-
if (lookahead == 't') ADVANCE(
|
529
|
-
if (lookahead == 'v') ADVANCE(
|
530
|
-
if (lookahead == '{') ADVANCE(
|
531
|
-
if (lookahead == '}') ADVANCE(
|
533
|
+
if (lookahead == '#') ADVANCE(71);
|
534
|
+
if (lookahead == '(') ADVANCE(150);
|
535
|
+
if (lookahead == '@') ADVANCE(61);
|
536
|
+
if (lookahead == 'a') ADVANCE(134);
|
537
|
+
if (lookahead == 'd') ADVANCE(117);
|
538
|
+
if (lookahead == 'f') ADVANCE(126);
|
539
|
+
if (lookahead == 'i') ADVANCE(129);
|
540
|
+
if (lookahead == 'o') ADVANCE(132);
|
541
|
+
if (lookahead == 'r') ADVANCE(114);
|
542
|
+
if (lookahead == 's') ADVANCE(147);
|
543
|
+
if (lookahead == 't') ADVANCE(124);
|
544
|
+
if (lookahead == 'v') ADVANCE(103);
|
545
|
+
if (lookahead == '{') ADVANCE(100);
|
546
|
+
if (lookahead == '}') ADVANCE(101);
|
532
547
|
if (lookahead == '\t' ||
|
533
548
|
lookahead == '\n' ||
|
534
549
|
lookahead == '\r' ||
|
535
550
|
lookahead == ' ') SKIP(1)
|
536
551
|
if (('A' <= lookahead && lookahead <= 'Z') ||
|
537
552
|
lookahead == '_' ||
|
538
|
-
('b' <= lookahead && lookahead <= 'z')) ADVANCE(
|
553
|
+
('b' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
539
554
|
END_STATE();
|
540
555
|
case 2:
|
541
556
|
if (lookahead == '"') ADVANCE(3);
|
542
|
-
if (lookahead == '(') ADVANCE(
|
543
|
-
if (lookahead == ')') ADVANCE(
|
557
|
+
if (lookahead == '(') ADVANCE(150);
|
558
|
+
if (lookahead == ')') ADVANCE(151);
|
544
559
|
if (lookahead == '\t' ||
|
545
560
|
lookahead == '\n' ||
|
546
561
|
lookahead == '\r' ||
|
547
562
|
lookahead == ' ') SKIP(2)
|
548
563
|
if (('A' <= lookahead && lookahead <= 'Z') ||
|
549
564
|
lookahead == '_' ||
|
550
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
565
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
551
566
|
END_STATE();
|
552
567
|
case 3:
|
553
|
-
if (lookahead == '"') ADVANCE(
|
554
|
-
if (lookahead == '\\') ADVANCE(
|
568
|
+
if (lookahead == '"') ADVANCE(102);
|
569
|
+
if (lookahead == '\\') ADVANCE(60);
|
555
570
|
if (lookahead != 0) ADVANCE(3);
|
556
571
|
END_STATE();
|
557
572
|
case 4:
|
558
|
-
if (lookahead == 'a') ADVANCE(
|
573
|
+
if (lookahead == 'a') ADVANCE(24);
|
559
574
|
END_STATE();
|
560
575
|
case 5:
|
561
|
-
if (lookahead == 'a') ADVANCE(
|
576
|
+
if (lookahead == 'a') ADVANCE(46);
|
562
577
|
END_STATE();
|
563
578
|
case 6:
|
564
|
-
if (lookahead == 'a') ADVANCE(
|
565
|
-
if (lookahead == 'o') ADVANCE(
|
579
|
+
if (lookahead == 'a') ADVANCE(47);
|
580
|
+
if (lookahead == 'o') ADVANCE(42);
|
566
581
|
END_STATE();
|
567
582
|
case 7:
|
568
|
-
if (lookahead == 'a') ADVANCE(
|
583
|
+
if (lookahead == 'a') ADVANCE(48);
|
569
584
|
END_STATE();
|
570
585
|
case 8:
|
571
|
-
if (lookahead == 'b') ADVANCE(
|
586
|
+
if (lookahead == 'b') ADVANCE(72);
|
572
587
|
END_STATE();
|
573
588
|
case 9:
|
574
|
-
if (lookahead == 'c') ADVANCE(
|
589
|
+
if (lookahead == 'c') ADVANCE(76);
|
575
590
|
END_STATE();
|
576
591
|
case 10:
|
577
|
-
if (lookahead == 'c') ADVANCE(
|
592
|
+
if (lookahead == 'c') ADVANCE(32);
|
578
593
|
END_STATE();
|
579
594
|
case 11:
|
580
|
-
if (lookahead == 'd') ADVANCE(
|
595
|
+
if (lookahead == 'd') ADVANCE(74);
|
581
596
|
END_STATE();
|
582
597
|
case 12:
|
583
|
-
if (lookahead == 'd') ADVANCE(
|
598
|
+
if (lookahead == 'd') ADVANCE(95);
|
584
599
|
END_STATE();
|
585
600
|
case 13:
|
586
|
-
if (lookahead == 'd') ADVANCE(
|
601
|
+
if (lookahead == 'd') ADVANCE(90);
|
587
602
|
END_STATE();
|
588
603
|
case 14:
|
589
|
-
if (lookahead == '
|
590
|
-
if (lookahead == 'i') ADVANCE(41);
|
604
|
+
if (lookahead == 'd') ADVANCE(20);
|
591
605
|
END_STATE();
|
592
606
|
case 15:
|
593
|
-
if (lookahead == 'e') ADVANCE(
|
607
|
+
if (lookahead == 'e') ADVANCE(22);
|
608
|
+
if (lookahead == 'i') ADVANCE(45);
|
594
609
|
END_STATE();
|
595
610
|
case 16:
|
596
|
-
if (lookahead == 'e') ADVANCE(
|
611
|
+
if (lookahead == 'e') ADVANCE(54);
|
597
612
|
END_STATE();
|
598
613
|
case 17:
|
599
|
-
if (lookahead == 'e') ADVANCE(
|
614
|
+
if (lookahead == 'e') ADVANCE(43);
|
600
615
|
END_STATE();
|
601
616
|
case 18:
|
602
|
-
if (lookahead == 'e') ADVANCE(
|
617
|
+
if (lookahead == 'e') ADVANCE(88);
|
603
618
|
END_STATE();
|
604
619
|
case 19:
|
605
|
-
if (lookahead == 'e') ADVANCE(
|
620
|
+
if (lookahead == 'e') ADVANCE(78);
|
606
621
|
END_STATE();
|
607
622
|
case 20:
|
608
|
-
if (lookahead == '
|
609
|
-
if (lookahead == 's') ADVANCE(9);
|
623
|
+
if (lookahead == 'e') ADVANCE(64);
|
610
624
|
END_STATE();
|
611
625
|
case 21:
|
612
|
-
if (lookahead == '
|
626
|
+
if (lookahead == 'e') ADVANCE(35);
|
613
627
|
END_STATE();
|
614
628
|
case 22:
|
615
|
-
if (lookahead == '
|
629
|
+
if (lookahead == 'f') ADVANCE(6);
|
630
|
+
if (lookahead == 's') ADVANCE(9);
|
616
631
|
END_STATE();
|
617
632
|
case 23:
|
618
|
-
if (lookahead == 'g') ADVANCE(
|
633
|
+
if (lookahead == 'g') ADVANCE(80);
|
619
634
|
END_STATE();
|
620
635
|
case 24:
|
621
|
-
if (lookahead == 'g') ADVANCE(
|
636
|
+
if (lookahead == 'g') ADVANCE(93);
|
622
637
|
END_STATE();
|
623
638
|
case 25:
|
624
|
-
if (lookahead == 'g') ADVANCE(
|
639
|
+
if (lookahead == 'g') ADVANCE(91);
|
625
640
|
END_STATE();
|
626
641
|
case 26:
|
627
|
-
if (lookahead == '
|
628
|
-
if (lookahead == 'u') ADVANCE(8);
|
642
|
+
if (lookahead == 'g') ADVANCE(50);
|
629
643
|
END_STATE();
|
630
644
|
case 27:
|
631
|
-
if (lookahead == '
|
632
|
-
if (lookahead == 'l') ADVANCE(4);
|
645
|
+
if (lookahead == 'g') ADVANCE(52);
|
633
646
|
END_STATE();
|
634
647
|
case 28:
|
635
|
-
if (lookahead == '
|
648
|
+
if (lookahead == 'h') ADVANCE(40);
|
636
649
|
END_STATE();
|
637
650
|
case 29:
|
638
|
-
if (lookahead == '
|
651
|
+
if (lookahead == 'h') ADVANCE(21);
|
652
|
+
if (lookahead == 'u') ADVANCE(8);
|
639
653
|
END_STATE();
|
640
654
|
case 30:
|
641
|
-
if (lookahead == '
|
655
|
+
if (lookahead == 'i') ADVANCE(34);
|
656
|
+
if (lookahead == 'l') ADVANCE(4);
|
642
657
|
END_STATE();
|
643
658
|
case 31:
|
644
|
-
if (lookahead == '
|
659
|
+
if (lookahead == 'i') ADVANCE(58);
|
645
660
|
END_STATE();
|
646
661
|
case 32:
|
647
|
-
if (lookahead == 'l') ADVANCE(
|
662
|
+
if (lookahead == 'l') ADVANCE(59);
|
648
663
|
END_STATE();
|
649
664
|
case 33:
|
650
|
-
if (lookahead == 'l') ADVANCE(
|
665
|
+
if (lookahead == 'l') ADVANCE(87);
|
651
666
|
END_STATE();
|
652
667
|
case 34:
|
653
|
-
if (lookahead == '
|
654
|
-
if (lookahead == 'o') ADVANCE(36);
|
668
|
+
if (lookahead == 'l') ADVANCE(18);
|
655
669
|
END_STATE();
|
656
670
|
case 35:
|
657
|
-
if (lookahead == '
|
671
|
+
if (lookahead == 'l') ADVANCE(33);
|
658
672
|
END_STATE();
|
659
673
|
case 36:
|
660
|
-
if (lookahead == '
|
674
|
+
if (lookahead == 'l') ADVANCE(19);
|
661
675
|
END_STATE();
|
662
676
|
case 37:
|
663
|
-
if (lookahead == '
|
677
|
+
if (lookahead == 'm') ADVANCE(11);
|
678
|
+
if (lookahead == 'o') ADVANCE(39);
|
664
679
|
END_STATE();
|
665
680
|
case 38:
|
666
|
-
if (lookahead == '
|
681
|
+
if (lookahead == 'n') ADVANCE(10);
|
667
682
|
END_STATE();
|
668
683
|
case 39:
|
669
|
-
if (lookahead == '
|
684
|
+
if (lookahead == 'n') ADVANCE(53);
|
670
685
|
END_STATE();
|
671
686
|
case 40:
|
672
|
-
if (lookahead == '
|
687
|
+
if (lookahead == 'o') ADVANCE(13);
|
673
688
|
END_STATE();
|
674
689
|
case 41:
|
675
|
-
if (lookahead == '
|
690
|
+
if (lookahead == 'p') ADVANCE(55);
|
676
691
|
END_STATE();
|
677
692
|
case 42:
|
678
|
-
if (lookahead == '
|
693
|
+
if (lookahead == 'p') ADVANCE(57);
|
679
694
|
END_STATE();
|
680
695
|
case 43:
|
681
|
-
if (lookahead == '
|
696
|
+
if (lookahead == 'q') ADVANCE(12);
|
682
697
|
END_STATE();
|
683
698
|
case 44:
|
684
|
-
if (lookahead == 'r') ADVANCE(
|
699
|
+
if (lookahead == 'r') ADVANCE(23);
|
685
700
|
END_STATE();
|
686
701
|
case 45:
|
687
|
-
if (lookahead == 'r') ADVANCE(
|
702
|
+
if (lookahead == 'r') ADVANCE(89);
|
688
703
|
END_STATE();
|
689
704
|
case 46:
|
690
|
-
if (lookahead == '
|
705
|
+
if (lookahead == 'r') ADVANCE(7);
|
691
706
|
END_STATE();
|
692
707
|
case 47:
|
693
|
-
if (lookahead == '
|
708
|
+
if (lookahead == 'r') ADVANCE(26);
|
694
709
|
END_STATE();
|
695
710
|
case 48:
|
696
|
-
if (lookahead == '
|
711
|
+
if (lookahead == 'r') ADVANCE(27);
|
697
712
|
END_STATE();
|
698
713
|
case 49:
|
699
|
-
if (lookahead == '
|
714
|
+
if (lookahead == 'r') ADVANCE(25);
|
700
715
|
END_STATE();
|
701
716
|
case 50:
|
702
|
-
if (lookahead == '
|
717
|
+
if (lookahead == 's') ADVANCE(68);
|
703
718
|
END_STATE();
|
704
719
|
case 51:
|
705
|
-
if (lookahead == '
|
720
|
+
if (lookahead == 's') ADVANCE(66);
|
706
721
|
END_STATE();
|
707
722
|
case 52:
|
708
|
-
if (lookahead == '
|
723
|
+
if (lookahead == 's') ADVANCE(82);
|
709
724
|
END_STATE();
|
710
725
|
case 53:
|
711
|
-
if (lookahead == '
|
726
|
+
if (lookahead == 's') ADVANCE(56);
|
712
727
|
END_STATE();
|
713
728
|
case 54:
|
714
|
-
if (lookahead == '
|
729
|
+
if (lookahead == 't') ADVANCE(28);
|
715
730
|
END_STATE();
|
716
731
|
case 55:
|
732
|
+
if (lookahead == 't') ADVANCE(97);
|
733
|
+
END_STATE();
|
734
|
+
case 56:
|
735
|
+
if (lookahead == 't') ADVANCE(86);
|
736
|
+
END_STATE();
|
737
|
+
case 57:
|
738
|
+
if (lookahead == 't') ADVANCE(51);
|
739
|
+
END_STATE();
|
740
|
+
case 58:
|
741
|
+
if (lookahead == 't') ADVANCE(36);
|
742
|
+
END_STATE();
|
743
|
+
case 59:
|
744
|
+
if (lookahead == 'u') ADVANCE(14);
|
745
|
+
END_STATE();
|
746
|
+
case 60:
|
717
747
|
if (lookahead == '"' ||
|
718
748
|
lookahead == '\\') ADVANCE(3);
|
719
749
|
END_STATE();
|
720
|
-
case
|
750
|
+
case 61:
|
721
751
|
if (('A' <= lookahead && lookahead <= 'Z') ||
|
722
752
|
lookahead == '_' ||
|
723
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
753
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(70);
|
724
754
|
END_STATE();
|
725
|
-
case
|
726
|
-
if (eof) ADVANCE(
|
755
|
+
case 62:
|
756
|
+
if (eof) ADVANCE(63);
|
727
757
|
if (lookahead == '"') ADVANCE(3);
|
728
|
-
if (lookahead == '#') ADVANCE(
|
729
|
-
if (lookahead == '(') ADVANCE(
|
730
|
-
if (lookahead == '@') ADVANCE(
|
731
|
-
if (lookahead == 'a') ADVANCE(
|
732
|
-
if (lookahead == 'c') ADVANCE(
|
733
|
-
if (lookahead == 'd') ADVANCE(
|
734
|
-
if (lookahead == 'f') ADVANCE(
|
735
|
-
if (lookahead == 'i') ADVANCE(
|
736
|
-
if (lookahead == 'o') ADVANCE(
|
737
|
-
if (lookahead == 'r') ADVANCE(
|
738
|
-
if (lookahead == 's') ADVANCE(
|
739
|
-
if (lookahead == 'v') ADVANCE(
|
740
|
-
if (lookahead == '{') ADVANCE(
|
758
|
+
if (lookahead == '#') ADVANCE(71);
|
759
|
+
if (lookahead == '(') ADVANCE(150);
|
760
|
+
if (lookahead == '@') ADVANCE(61);
|
761
|
+
if (lookahead == 'a') ADVANCE(134);
|
762
|
+
if (lookahead == 'c') ADVANCE(128);
|
763
|
+
if (lookahead == 'd') ADVANCE(113);
|
764
|
+
if (lookahead == 'f') ADVANCE(126);
|
765
|
+
if (lookahead == 'i') ADVANCE(129);
|
766
|
+
if (lookahead == 'o') ADVANCE(130);
|
767
|
+
if (lookahead == 'r') ADVANCE(114);
|
768
|
+
if (lookahead == 's') ADVANCE(147);
|
769
|
+
if (lookahead == 'v') ADVANCE(103);
|
770
|
+
if (lookahead == '{') ADVANCE(100);
|
741
771
|
if (lookahead == '\t' ||
|
742
772
|
lookahead == '\n' ||
|
743
773
|
lookahead == '\r' ||
|
744
|
-
lookahead == ' ') SKIP(
|
774
|
+
lookahead == ' ') SKIP(62)
|
745
775
|
if (('A' <= lookahead && lookahead <= 'Z') ||
|
746
776
|
lookahead == '_' ||
|
747
|
-
('b' <= lookahead && lookahead <= 'z')) ADVANCE(
|
777
|
+
('b' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
748
778
|
END_STATE();
|
749
|
-
case
|
779
|
+
case 63:
|
750
780
|
ACCEPT_TOKEN(ts_builtin_sym_end);
|
751
781
|
END_STATE();
|
752
|
-
case
|
782
|
+
case 64:
|
753
783
|
ACCEPT_TOKEN(anon_sym_include);
|
754
784
|
END_STATE();
|
755
|
-
case
|
785
|
+
case 65:
|
756
786
|
ACCEPT_TOKEN(anon_sym_include);
|
757
787
|
if (lookahead == ',' ||
|
758
788
|
lookahead == '-' ||
|
759
789
|
('0' <= lookahead && lookahead <= '9') ||
|
760
790
|
('A' <= lookahead && lookahead <= 'Z') ||
|
761
791
|
lookahead == '_' ||
|
762
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
792
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
763
793
|
END_STATE();
|
764
|
-
case
|
794
|
+
case 66:
|
765
795
|
ACCEPT_TOKEN(anon_sym_defopts);
|
766
796
|
END_STATE();
|
767
|
-
case
|
797
|
+
case 67:
|
768
798
|
ACCEPT_TOKEN(anon_sym_defopts);
|
769
799
|
if (lookahead == ',' ||
|
770
800
|
lookahead == '-' ||
|
771
801
|
('0' <= lookahead && lookahead <= '9') ||
|
772
802
|
('A' <= lookahead && lookahead <= 'Z') ||
|
773
803
|
lookahead == '_' ||
|
774
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
804
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
775
805
|
END_STATE();
|
776
|
-
case
|
806
|
+
case 68:
|
777
807
|
ACCEPT_TOKEN(anon_sym_defargs);
|
778
808
|
END_STATE();
|
779
|
-
case
|
809
|
+
case 69:
|
780
810
|
ACCEPT_TOKEN(anon_sym_defargs);
|
781
811
|
if (lookahead == ',' ||
|
782
812
|
lookahead == '-' ||
|
783
813
|
('0' <= lookahead && lookahead <= '9') ||
|
784
814
|
('A' <= lookahead && lookahead <= 'Z') ||
|
785
815
|
lookahead == '_' ||
|
786
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
816
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
787
817
|
END_STATE();
|
788
|
-
case
|
818
|
+
case 70:
|
789
819
|
ACCEPT_TOKEN(sym_at_identifier);
|
790
820
|
if (lookahead == '-' ||
|
791
821
|
('0' <= lookahead && lookahead <= '9') ||
|
792
822
|
('A' <= lookahead && lookahead <= 'Z') ||
|
793
823
|
lookahead == '_' ||
|
794
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
824
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(70);
|
795
825
|
END_STATE();
|
796
|
-
case
|
826
|
+
case 71:
|
797
827
|
ACCEPT_TOKEN(sym__comment);
|
798
828
|
if (lookahead != 0 &&
|
799
|
-
lookahead != '\n') ADVANCE(
|
829
|
+
lookahead != '\n') ADVANCE(71);
|
800
830
|
END_STATE();
|
801
|
-
case
|
831
|
+
case 72:
|
802
832
|
ACCEPT_TOKEN(anon_sym_sub);
|
803
833
|
END_STATE();
|
804
|
-
case
|
834
|
+
case 73:
|
805
835
|
ACCEPT_TOKEN(anon_sym_sub);
|
806
836
|
if (lookahead == ',' ||
|
807
837
|
lookahead == '-' ||
|
808
838
|
('0' <= lookahead && lookahead <= '9') ||
|
809
839
|
('A' <= lookahead && lookahead <= 'Z') ||
|
810
840
|
lookahead == '_' ||
|
811
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
841
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
812
842
|
END_STATE();
|
813
|
-
case
|
843
|
+
case 74:
|
814
844
|
ACCEPT_TOKEN(anon_sym_cmd);
|
815
845
|
END_STATE();
|
816
|
-
case
|
846
|
+
case 75:
|
817
847
|
ACCEPT_TOKEN(anon_sym_cmd);
|
818
848
|
if (lookahead == ',' ||
|
819
849
|
lookahead == '-' ||
|
820
850
|
('0' <= lookahead && lookahead <= '9') ||
|
821
851
|
('A' <= lookahead && lookahead <= 'Z') ||
|
822
852
|
lookahead == '_' ||
|
823
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
853
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
824
854
|
END_STATE();
|
825
|
-
case
|
855
|
+
case 76:
|
826
856
|
ACCEPT_TOKEN(anon_sym_desc);
|
827
857
|
END_STATE();
|
828
|
-
case
|
858
|
+
case 77:
|
829
859
|
ACCEPT_TOKEN(anon_sym_desc);
|
830
860
|
if (lookahead == ',' ||
|
831
861
|
lookahead == '-' ||
|
832
862
|
('0' <= lookahead && lookahead <= '9') ||
|
833
863
|
('A' <= lookahead && lookahead <= 'Z') ||
|
834
864
|
lookahead == '_' ||
|
835
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
865
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
836
866
|
END_STATE();
|
837
|
-
case
|
867
|
+
case 78:
|
838
868
|
ACCEPT_TOKEN(anon_sym_title);
|
839
869
|
END_STATE();
|
840
|
-
case
|
870
|
+
case 79:
|
841
871
|
ACCEPT_TOKEN(anon_sym_title);
|
842
872
|
if (lookahead == ',' ||
|
843
873
|
lookahead == '-' ||
|
844
874
|
('0' <= lookahead && lookahead <= '9') ||
|
845
875
|
('A' <= lookahead && lookahead <= 'Z') ||
|
846
876
|
lookahead == '_' ||
|
847
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
877
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
848
878
|
END_STATE();
|
849
|
-
case
|
879
|
+
case 80:
|
850
880
|
ACCEPT_TOKEN(anon_sym_arg);
|
851
881
|
END_STATE();
|
852
|
-
case
|
882
|
+
case 81:
|
853
883
|
ACCEPT_TOKEN(anon_sym_arg);
|
854
884
|
if (lookahead == ',' ||
|
855
885
|
lookahead == '-' ||
|
856
886
|
('0' <= lookahead && lookahead <= '9') ||
|
857
887
|
('A' <= lookahead && lookahead <= 'Z') ||
|
858
888
|
lookahead == '_' ||
|
859
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
889
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
860
890
|
END_STATE();
|
861
|
-
case
|
891
|
+
case 82:
|
862
892
|
ACCEPT_TOKEN(anon_sym_varargs);
|
863
893
|
END_STATE();
|
864
|
-
case
|
894
|
+
case 83:
|
865
895
|
ACCEPT_TOKEN(anon_sym_varargs);
|
866
896
|
if (lookahead == ',' ||
|
867
897
|
lookahead == '-' ||
|
868
898
|
('0' <= lookahead && lookahead <= '9') ||
|
869
899
|
('A' <= lookahead && lookahead <= 'Z') ||
|
870
900
|
lookahead == '_' ||
|
871
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
901
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
872
902
|
END_STATE();
|
873
|
-
case
|
903
|
+
case 84:
|
874
904
|
ACCEPT_TOKEN(anon_sym_opts);
|
875
905
|
END_STATE();
|
876
|
-
case
|
906
|
+
case 85:
|
877
907
|
ACCEPT_TOKEN(anon_sym_opts);
|
878
908
|
if (lookahead == ',' ||
|
879
909
|
lookahead == '-' ||
|
880
910
|
('0' <= lookahead && lookahead <= '9') ||
|
881
911
|
('A' <= lookahead && lookahead <= 'Z') ||
|
882
912
|
lookahead == '_' ||
|
883
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
913
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
884
914
|
END_STATE();
|
885
|
-
case
|
915
|
+
case 86:
|
886
916
|
ACCEPT_TOKEN(anon_sym_const);
|
887
917
|
END_STATE();
|
888
|
-
case
|
918
|
+
case 87:
|
889
919
|
ACCEPT_TOKEN(anon_sym_shell);
|
890
920
|
END_STATE();
|
891
|
-
case
|
921
|
+
case 88:
|
892
922
|
ACCEPT_TOKEN(anon_sym_file);
|
893
923
|
END_STATE();
|
894
|
-
case
|
924
|
+
case 89:
|
895
925
|
ACCEPT_TOKEN(anon_sym_dir);
|
896
926
|
END_STATE();
|
897
|
-
case
|
927
|
+
case 90:
|
928
|
+
ACCEPT_TOKEN(anon_sym_method);
|
929
|
+
END_STATE();
|
930
|
+
case 91:
|
898
931
|
ACCEPT_TOKEN(anon_sym_flagarg);
|
899
932
|
END_STATE();
|
900
|
-
case
|
933
|
+
case 92:
|
901
934
|
ACCEPT_TOKEN(anon_sym_flagarg);
|
902
935
|
if (lookahead == ',' ||
|
903
936
|
lookahead == '-' ||
|
904
937
|
('0' <= lookahead && lookahead <= '9') ||
|
905
938
|
('A' <= lookahead && lookahead <= 'Z') ||
|
906
939
|
lookahead == '_' ||
|
907
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
940
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
908
941
|
END_STATE();
|
909
|
-
case
|
942
|
+
case 93:
|
910
943
|
ACCEPT_TOKEN(anon_sym_flag);
|
911
|
-
if (lookahead == 'a') ADVANCE(
|
944
|
+
if (lookahead == 'a') ADVANCE(49);
|
912
945
|
END_STATE();
|
913
|
-
case
|
946
|
+
case 94:
|
914
947
|
ACCEPT_TOKEN(anon_sym_flag);
|
915
|
-
if (lookahead == 'a') ADVANCE(
|
948
|
+
if (lookahead == 'a') ADVANCE(138);
|
916
949
|
if (lookahead == ',' ||
|
917
950
|
lookahead == '-' ||
|
918
951
|
('0' <= lookahead && lookahead <= '9') ||
|
919
952
|
('A' <= lookahead && lookahead <= 'Z') ||
|
920
953
|
lookahead == '_' ||
|
921
|
-
('b' <= lookahead && lookahead <= 'z')) ADVANCE(
|
954
|
+
('b' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
922
955
|
END_STATE();
|
923
|
-
case
|
956
|
+
case 95:
|
924
957
|
ACCEPT_TOKEN(anon_sym_reqd);
|
925
958
|
END_STATE();
|
926
|
-
case
|
959
|
+
case 96:
|
927
960
|
ACCEPT_TOKEN(anon_sym_reqd);
|
928
961
|
if (lookahead == ',' ||
|
929
962
|
lookahead == '-' ||
|
930
963
|
('0' <= lookahead && lookahead <= '9') ||
|
931
964
|
('A' <= lookahead && lookahead <= 'Z') ||
|
932
965
|
lookahead == '_' ||
|
933
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
934
|
-
END_STATE();
|
935
|
-
case 91:
|
936
|
-
ACCEPT_TOKEN(sym_arg_modifier);
|
937
|
-
if (lookahead == 's') ADVANCE(79);
|
938
|
-
END_STATE();
|
939
|
-
case 92:
|
940
|
-
ACCEPT_TOKEN(sym_arg_modifier);
|
941
|
-
if (lookahead == 's') ADVANCE(80);
|
942
|
-
if (lookahead == ',' ||
|
943
|
-
lookahead == '-' ||
|
944
|
-
('0' <= lookahead && lookahead <= '9') ||
|
945
|
-
('A' <= lookahead && lookahead <= 'Z') ||
|
946
|
-
lookahead == '_' ||
|
947
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(143);
|
948
|
-
END_STATE();
|
949
|
-
case 93:
|
950
|
-
ACCEPT_TOKEN(sym_arg_modifier);
|
951
|
-
if (lookahead == ',' ||
|
952
|
-
lookahead == '-' ||
|
953
|
-
('0' <= lookahead && lookahead <= '9') ||
|
954
|
-
('A' <= lookahead && lookahead <= 'Z') ||
|
955
|
-
lookahead == '_' ||
|
956
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(143);
|
957
|
-
END_STATE();
|
958
|
-
case 94:
|
959
|
-
ACCEPT_TOKEN(anon_sym_LBRACE);
|
960
|
-
END_STATE();
|
961
|
-
case 95:
|
962
|
-
ACCEPT_TOKEN(anon_sym_RBRACE);
|
963
|
-
END_STATE();
|
964
|
-
case 96:
|
965
|
-
ACCEPT_TOKEN(sym_string);
|
966
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
966
967
|
END_STATE();
|
967
968
|
case 97:
|
968
|
-
ACCEPT_TOKEN(
|
969
|
-
if (lookahead == '
|
970
|
-
if (lookahead == ',' ||
|
971
|
-
lookahead == '-' ||
|
972
|
-
('0' <= lookahead && lookahead <= '9') ||
|
973
|
-
('A' <= lookahead && lookahead <= 'Z') ||
|
974
|
-
lookahead == '_' ||
|
975
|
-
('b' <= lookahead && lookahead <= 'z')) ADVANCE(143);
|
969
|
+
ACCEPT_TOKEN(sym_arg_modifier);
|
970
|
+
if (lookahead == 's') ADVANCE(84);
|
976
971
|
END_STATE();
|
977
972
|
case 98:
|
978
|
-
ACCEPT_TOKEN(
|
979
|
-
if (lookahead == '
|
973
|
+
ACCEPT_TOKEN(sym_arg_modifier);
|
974
|
+
if (lookahead == 's') ADVANCE(85);
|
980
975
|
if (lookahead == ',' ||
|
981
976
|
lookahead == '-' ||
|
982
977
|
('0' <= lookahead && lookahead <= '9') ||
|
983
978
|
('A' <= lookahead && lookahead <= 'Z') ||
|
984
979
|
lookahead == '_' ||
|
985
|
-
('
|
980
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
986
981
|
END_STATE();
|
987
982
|
case 99:
|
988
|
-
ACCEPT_TOKEN(
|
989
|
-
if (lookahead == 'a') ADVANCE(130);
|
990
|
-
if (lookahead == 'o') ADVANCE(125);
|
983
|
+
ACCEPT_TOKEN(sym_arg_modifier);
|
991
984
|
if (lookahead == ',' ||
|
992
985
|
lookahead == '-' ||
|
993
986
|
('0' <= lookahead && lookahead <= '9') ||
|
994
987
|
('A' <= lookahead && lookahead <= 'Z') ||
|
995
988
|
lookahead == '_' ||
|
996
|
-
('
|
989
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
997
990
|
END_STATE();
|
998
991
|
case 100:
|
999
|
-
ACCEPT_TOKEN(
|
1000
|
-
if (lookahead == 'a') ADVANCE(131);
|
1001
|
-
if (lookahead == ',' ||
|
1002
|
-
lookahead == '-' ||
|
1003
|
-
('0' <= lookahead && lookahead <= '9') ||
|
1004
|
-
('A' <= lookahead && lookahead <= 'Z') ||
|
1005
|
-
lookahead == '_' ||
|
1006
|
-
('b' <= lookahead && lookahead <= 'z')) ADVANCE(143);
|
992
|
+
ACCEPT_TOKEN(anon_sym_LBRACE);
|
1007
993
|
END_STATE();
|
1008
994
|
case 101:
|
1009
|
-
ACCEPT_TOKEN(
|
1010
|
-
if (lookahead == 'b') ADVANCE(68);
|
1011
|
-
if (lookahead == ',' ||
|
1012
|
-
lookahead == '-' ||
|
1013
|
-
('0' <= lookahead && lookahead <= '9') ||
|
1014
|
-
('A' <= lookahead && lookahead <= 'Z') ||
|
1015
|
-
lookahead == '_' ||
|
1016
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(143);
|
995
|
+
ACCEPT_TOKEN(anon_sym_RBRACE);
|
1017
996
|
END_STATE();
|
1018
997
|
case 102:
|
1019
998
|
ACCEPT_TOKEN(sym_string);
|
1020
|
-
if (lookahead == 'c') ADVANCE(72);
|
1021
|
-
if (lookahead == ',' ||
|
1022
|
-
lookahead == '-' ||
|
1023
|
-
('0' <= lookahead && lookahead <= '9') ||
|
1024
|
-
('A' <= lookahead && lookahead <= 'Z') ||
|
1025
|
-
lookahead == '_' ||
|
1026
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(143);
|
1027
999
|
END_STATE();
|
1028
1000
|
case 103:
|
1029
1001
|
ACCEPT_TOKEN(sym_string);
|
1030
|
-
if (lookahead == '
|
1002
|
+
if (lookahead == 'a') ADVANCE(135);
|
1031
1003
|
if (lookahead == ',' ||
|
1032
1004
|
lookahead == '-' ||
|
1033
1005
|
('0' <= lookahead && lookahead <= '9') ||
|
1034
1006
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1035
1007
|
lookahead == '_' ||
|
1036
|
-
('
|
1008
|
+
('b' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1037
1009
|
END_STATE();
|
1038
1010
|
case 104:
|
1039
1011
|
ACCEPT_TOKEN(sym_string);
|
1040
|
-
if (lookahead == '
|
1012
|
+
if (lookahead == 'a') ADVANCE(120);
|
1041
1013
|
if (lookahead == ',' ||
|
1042
1014
|
lookahead == '-' ||
|
1043
1015
|
('0' <= lookahead && lookahead <= '9') ||
|
1044
1016
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1045
1017
|
lookahead == '_' ||
|
1046
|
-
('
|
1018
|
+
('b' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1047
1019
|
END_STATE();
|
1048
1020
|
case 105:
|
1049
1021
|
ACCEPT_TOKEN(sym_string);
|
1050
|
-
if (lookahead == '
|
1022
|
+
if (lookahead == 'a') ADVANCE(136);
|
1023
|
+
if (lookahead == 'o') ADVANCE(131);
|
1051
1024
|
if (lookahead == ',' ||
|
1052
1025
|
lookahead == '-' ||
|
1053
1026
|
('0' <= lookahead && lookahead <= '9') ||
|
1054
1027
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1055
1028
|
lookahead == '_' ||
|
1056
|
-
('
|
1029
|
+
('b' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1057
1030
|
END_STATE();
|
1058
1031
|
case 106:
|
1059
1032
|
ACCEPT_TOKEN(sym_string);
|
1060
|
-
if (lookahead == '
|
1033
|
+
if (lookahead == 'a') ADVANCE(137);
|
1061
1034
|
if (lookahead == ',' ||
|
1062
1035
|
lookahead == '-' ||
|
1063
1036
|
('0' <= lookahead && lookahead <= '9') ||
|
1064
1037
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1065
1038
|
lookahead == '_' ||
|
1066
|
-
('
|
1039
|
+
('b' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1067
1040
|
END_STATE();
|
1068
1041
|
case 107:
|
1069
1042
|
ACCEPT_TOKEN(sym_string);
|
1070
|
-
if (lookahead == '
|
1043
|
+
if (lookahead == 'b') ADVANCE(73);
|
1071
1044
|
if (lookahead == ',' ||
|
1072
1045
|
lookahead == '-' ||
|
1073
1046
|
('0' <= lookahead && lookahead <= '9') ||
|
1074
1047
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1075
1048
|
lookahead == '_' ||
|
1076
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1049
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1077
1050
|
END_STATE();
|
1078
1051
|
case 108:
|
1079
1052
|
ACCEPT_TOKEN(sym_string);
|
1080
|
-
if (lookahead == '
|
1053
|
+
if (lookahead == 'c') ADVANCE(77);
|
1081
1054
|
if (lookahead == ',' ||
|
1082
1055
|
lookahead == '-' ||
|
1083
1056
|
('0' <= lookahead && lookahead <= '9') ||
|
1084
1057
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1085
1058
|
lookahead == '_' ||
|
1086
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1059
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1087
1060
|
END_STATE();
|
1088
1061
|
case 109:
|
1089
1062
|
ACCEPT_TOKEN(sym_string);
|
1090
|
-
if (lookahead == '
|
1063
|
+
if (lookahead == 'c') ADVANCE(125);
|
1091
1064
|
if (lookahead == ',' ||
|
1092
1065
|
lookahead == '-' ||
|
1093
1066
|
('0' <= lookahead && lookahead <= '9') ||
|
1094
1067
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1095
1068
|
lookahead == '_' ||
|
1096
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1069
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1097
1070
|
END_STATE();
|
1098
1071
|
case 110:
|
1099
1072
|
ACCEPT_TOKEN(sym_string);
|
1100
|
-
if (lookahead == '
|
1073
|
+
if (lookahead == 'd') ADVANCE(75);
|
1101
1074
|
if (lookahead == ',' ||
|
1102
1075
|
lookahead == '-' ||
|
1103
1076
|
('0' <= lookahead && lookahead <= '9') ||
|
1104
1077
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1105
1078
|
lookahead == '_' ||
|
1106
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1079
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1107
1080
|
END_STATE();
|
1108
1081
|
case 111:
|
1109
1082
|
ACCEPT_TOKEN(sym_string);
|
1110
|
-
if (lookahead == '
|
1083
|
+
if (lookahead == 'd') ADVANCE(96);
|
1111
1084
|
if (lookahead == ',' ||
|
1112
1085
|
lookahead == '-' ||
|
1113
1086
|
('0' <= lookahead && lookahead <= '9') ||
|
1114
1087
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1115
1088
|
lookahead == '_' ||
|
1116
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1089
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1117
1090
|
END_STATE();
|
1118
1091
|
case 112:
|
1119
1092
|
ACCEPT_TOKEN(sym_string);
|
1120
|
-
if (lookahead == '
|
1121
|
-
if (lookahead == 's') ADVANCE(102);
|
1093
|
+
if (lookahead == 'd') ADVANCE(115);
|
1122
1094
|
if (lookahead == ',' ||
|
1123
1095
|
lookahead == '-' ||
|
1124
1096
|
('0' <= lookahead && lookahead <= '9') ||
|
1125
1097
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1126
1098
|
lookahead == '_' ||
|
1127
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1099
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1128
1100
|
END_STATE();
|
1129
1101
|
case 113:
|
1130
1102
|
ACCEPT_TOKEN(sym_string);
|
1131
|
-
if (lookahead == '
|
1103
|
+
if (lookahead == 'e') ADVANCE(118);
|
1132
1104
|
if (lookahead == ',' ||
|
1133
1105
|
lookahead == '-' ||
|
1134
1106
|
('0' <= lookahead && lookahead <= '9') ||
|
1135
1107
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1136
1108
|
lookahead == '_' ||
|
1137
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1109
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1138
1110
|
END_STATE();
|
1139
1111
|
case 114:
|
1140
1112
|
ACCEPT_TOKEN(sym_string);
|
1141
|
-
if (lookahead == '
|
1113
|
+
if (lookahead == 'e') ADVANCE(133);
|
1142
1114
|
if (lookahead == ',' ||
|
1143
1115
|
lookahead == '-' ||
|
1144
1116
|
('0' <= lookahead && lookahead <= '9') ||
|
1145
1117
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1146
1118
|
lookahead == '_' ||
|
1147
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1119
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1148
1120
|
END_STATE();
|
1149
1121
|
case 115:
|
1150
1122
|
ACCEPT_TOKEN(sym_string);
|
1151
|
-
if (lookahead == '
|
1123
|
+
if (lookahead == 'e') ADVANCE(65);
|
1152
1124
|
if (lookahead == ',' ||
|
1153
1125
|
lookahead == '-' ||
|
1154
1126
|
('0' <= lookahead && lookahead <= '9') ||
|
1155
1127
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1156
1128
|
lookahead == '_' ||
|
1157
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1129
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1158
1130
|
END_STATE();
|
1159
1131
|
case 116:
|
1160
1132
|
ACCEPT_TOKEN(sym_string);
|
1161
|
-
if (lookahead == '
|
1133
|
+
if (lookahead == 'e') ADVANCE(79);
|
1162
1134
|
if (lookahead == ',' ||
|
1163
1135
|
lookahead == '-' ||
|
1164
1136
|
('0' <= lookahead && lookahead <= '9') ||
|
1165
1137
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1166
1138
|
lookahead == '_' ||
|
1167
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1139
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1168
1140
|
END_STATE();
|
1169
1141
|
case 117:
|
1170
1142
|
ACCEPT_TOKEN(sym_string);
|
1171
|
-
if (lookahead == '
|
1143
|
+
if (lookahead == 'e') ADVANCE(142);
|
1172
1144
|
if (lookahead == ',' ||
|
1173
1145
|
lookahead == '-' ||
|
1174
1146
|
('0' <= lookahead && lookahead <= '9') ||
|
1175
1147
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1176
1148
|
lookahead == '_' ||
|
1177
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1149
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1178
1150
|
END_STATE();
|
1179
1151
|
case 118:
|
1180
1152
|
ACCEPT_TOKEN(sym_string);
|
1181
|
-
if (lookahead == '
|
1153
|
+
if (lookahead == 'f') ADVANCE(105);
|
1154
|
+
if (lookahead == 's') ADVANCE(108);
|
1182
1155
|
if (lookahead == ',' ||
|
1183
1156
|
lookahead == '-' ||
|
1184
1157
|
('0' <= lookahead && lookahead <= '9') ||
|
1185
1158
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1186
1159
|
lookahead == '_' ||
|
1187
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1160
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1188
1161
|
END_STATE();
|
1189
1162
|
case 119:
|
1190
1163
|
ACCEPT_TOKEN(sym_string);
|
1191
|
-
if (lookahead == '
|
1164
|
+
if (lookahead == 'g') ADVANCE(81);
|
1192
1165
|
if (lookahead == ',' ||
|
1193
1166
|
lookahead == '-' ||
|
1194
1167
|
('0' <= lookahead && lookahead <= '9') ||
|
1195
1168
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1196
1169
|
lookahead == '_' ||
|
1197
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1170
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1198
1171
|
END_STATE();
|
1199
1172
|
case 120:
|
1200
1173
|
ACCEPT_TOKEN(sym_string);
|
1201
|
-
if (lookahead == '
|
1174
|
+
if (lookahead == 'g') ADVANCE(94);
|
1202
1175
|
if (lookahead == ',' ||
|
1203
1176
|
lookahead == '-' ||
|
1204
1177
|
('0' <= lookahead && lookahead <= '9') ||
|
1205
1178
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1206
1179
|
lookahead == '_' ||
|
1207
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1180
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1208
1181
|
END_STATE();
|
1209
1182
|
case 121:
|
1210
1183
|
ACCEPT_TOKEN(sym_string);
|
1211
|
-
if (lookahead == '
|
1184
|
+
if (lookahead == 'g') ADVANCE(139);
|
1212
1185
|
if (lookahead == ',' ||
|
1213
1186
|
lookahead == '-' ||
|
1214
1187
|
('0' <= lookahead && lookahead <= '9') ||
|
1215
1188
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1216
1189
|
lookahead == '_' ||
|
1217
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1190
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1218
1191
|
END_STATE();
|
1219
1192
|
case 122:
|
1220
1193
|
ACCEPT_TOKEN(sym_string);
|
1221
|
-
if (lookahead == '
|
1194
|
+
if (lookahead == 'g') ADVANCE(92);
|
1222
1195
|
if (lookahead == ',' ||
|
1223
1196
|
lookahead == '-' ||
|
1224
1197
|
('0' <= lookahead && lookahead <= '9') ||
|
1225
1198
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1226
1199
|
lookahead == '_' ||
|
1227
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1200
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1228
1201
|
END_STATE();
|
1229
1202
|
case 123:
|
1230
1203
|
ACCEPT_TOKEN(sym_string);
|
1231
|
-
if (lookahead == '
|
1204
|
+
if (lookahead == 'g') ADVANCE(141);
|
1232
1205
|
if (lookahead == ',' ||
|
1233
1206
|
lookahead == '-' ||
|
1234
1207
|
('0' <= lookahead && lookahead <= '9') ||
|
1235
1208
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1236
1209
|
lookahead == '_' ||
|
1237
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1210
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1238
1211
|
END_STATE();
|
1239
1212
|
case 124:
|
1240
1213
|
ACCEPT_TOKEN(sym_string);
|
1241
|
-
if (lookahead == '
|
1214
|
+
if (lookahead == 'i') ADVANCE(146);
|
1242
1215
|
if (lookahead == ',' ||
|
1243
1216
|
lookahead == '-' ||
|
1244
1217
|
('0' <= lookahead && lookahead <= '9') ||
|
1245
1218
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1246
1219
|
lookahead == '_' ||
|
1247
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1220
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1248
1221
|
END_STATE();
|
1249
1222
|
case 125:
|
1250
1223
|
ACCEPT_TOKEN(sym_string);
|
1251
|
-
if (lookahead == '
|
1224
|
+
if (lookahead == 'l') ADVANCE(148);
|
1252
1225
|
if (lookahead == ',' ||
|
1253
1226
|
lookahead == '-' ||
|
1254
1227
|
('0' <= lookahead && lookahead <= '9') ||
|
1255
1228
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1256
1229
|
lookahead == '_' ||
|
1257
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1230
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1258
1231
|
END_STATE();
|
1259
1232
|
case 126:
|
1260
1233
|
ACCEPT_TOKEN(sym_string);
|
1261
|
-
if (lookahead == '
|
1234
|
+
if (lookahead == 'l') ADVANCE(104);
|
1262
1235
|
if (lookahead == ',' ||
|
1263
1236
|
lookahead == '-' ||
|
1264
1237
|
('0' <= lookahead && lookahead <= '9') ||
|
1265
1238
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1266
1239
|
lookahead == '_' ||
|
1267
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1240
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1268
1241
|
END_STATE();
|
1269
1242
|
case 127:
|
1270
1243
|
ACCEPT_TOKEN(sym_string);
|
1271
|
-
if (lookahead == '
|
1244
|
+
if (lookahead == 'l') ADVANCE(116);
|
1272
1245
|
if (lookahead == ',' ||
|
1273
1246
|
lookahead == '-' ||
|
1274
1247
|
('0' <= lookahead && lookahead <= '9') ||
|
1275
1248
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1276
1249
|
lookahead == '_' ||
|
1277
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1250
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1278
1251
|
END_STATE();
|
1279
1252
|
case 128:
|
1280
1253
|
ACCEPT_TOKEN(sym_string);
|
1281
|
-
if (lookahead == '
|
1254
|
+
if (lookahead == 'm') ADVANCE(110);
|
1282
1255
|
if (lookahead == ',' ||
|
1283
1256
|
lookahead == '-' ||
|
1284
1257
|
('0' <= lookahead && lookahead <= '9') ||
|
1285
1258
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1286
1259
|
lookahead == '_' ||
|
1287
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1260
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1288
1261
|
END_STATE();
|
1289
1262
|
case 129:
|
1290
1263
|
ACCEPT_TOKEN(sym_string);
|
1291
|
-
if (lookahead == '
|
1264
|
+
if (lookahead == 'n') ADVANCE(109);
|
1292
1265
|
if (lookahead == ',' ||
|
1293
1266
|
lookahead == '-' ||
|
1294
1267
|
('0' <= lookahead && lookahead <= '9') ||
|
1295
1268
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1296
1269
|
lookahead == '_' ||
|
1297
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1270
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1298
1271
|
END_STATE();
|
1299
1272
|
case 130:
|
1300
1273
|
ACCEPT_TOKEN(sym_string);
|
1301
|
-
if (lookahead == '
|
1274
|
+
if (lookahead == 'p') ADVANCE(143);
|
1302
1275
|
if (lookahead == ',' ||
|
1303
1276
|
lookahead == '-' ||
|
1304
1277
|
('0' <= lookahead && lookahead <= '9') ||
|
1305
1278
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1306
1279
|
lookahead == '_' ||
|
1307
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1280
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1308
1281
|
END_STATE();
|
1309
1282
|
case 131:
|
1310
1283
|
ACCEPT_TOKEN(sym_string);
|
1311
|
-
if (lookahead == '
|
1284
|
+
if (lookahead == 'p') ADVANCE(145);
|
1312
1285
|
if (lookahead == ',' ||
|
1313
1286
|
lookahead == '-' ||
|
1314
1287
|
('0' <= lookahead && lookahead <= '9') ||
|
1315
1288
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1316
1289
|
lookahead == '_' ||
|
1317
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1290
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1318
1291
|
END_STATE();
|
1319
1292
|
case 132:
|
1320
1293
|
ACCEPT_TOKEN(sym_string);
|
1321
|
-
if (lookahead == '
|
1294
|
+
if (lookahead == 'p') ADVANCE(144);
|
1322
1295
|
if (lookahead == ',' ||
|
1323
1296
|
lookahead == '-' ||
|
1324
1297
|
('0' <= lookahead && lookahead <= '9') ||
|
1325
1298
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1326
1299
|
lookahead == '_' ||
|
1327
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1300
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1328
1301
|
END_STATE();
|
1329
1302
|
case 133:
|
1330
1303
|
ACCEPT_TOKEN(sym_string);
|
1331
|
-
if (lookahead == '
|
1304
|
+
if (lookahead == 'q') ADVANCE(111);
|
1332
1305
|
if (lookahead == ',' ||
|
1333
1306
|
lookahead == '-' ||
|
1334
1307
|
('0' <= lookahead && lookahead <= '9') ||
|
1335
1308
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1336
1309
|
lookahead == '_' ||
|
1337
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1310
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1338
1311
|
END_STATE();
|
1339
1312
|
case 134:
|
1340
1313
|
ACCEPT_TOKEN(sym_string);
|
1341
|
-
if (lookahead == '
|
1314
|
+
if (lookahead == 'r') ADVANCE(119);
|
1342
1315
|
if (lookahead == ',' ||
|
1343
1316
|
lookahead == '-' ||
|
1344
1317
|
('0' <= lookahead && lookahead <= '9') ||
|
1345
1318
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1346
1319
|
lookahead == '_' ||
|
1347
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1320
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1348
1321
|
END_STATE();
|
1349
1322
|
case 135:
|
1350
1323
|
ACCEPT_TOKEN(sym_string);
|
1351
|
-
if (lookahead == '
|
1324
|
+
if (lookahead == 'r') ADVANCE(106);
|
1352
1325
|
if (lookahead == ',' ||
|
1353
1326
|
lookahead == '-' ||
|
1354
1327
|
('0' <= lookahead && lookahead <= '9') ||
|
1355
1328
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1356
1329
|
lookahead == '_' ||
|
1357
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1330
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1358
1331
|
END_STATE();
|
1359
1332
|
case 136:
|
1360
1333
|
ACCEPT_TOKEN(sym_string);
|
1361
|
-
if (lookahead == '
|
1334
|
+
if (lookahead == 'r') ADVANCE(121);
|
1362
1335
|
if (lookahead == ',' ||
|
1363
1336
|
lookahead == '-' ||
|
1364
1337
|
('0' <= lookahead && lookahead <= '9') ||
|
1365
1338
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1366
1339
|
lookahead == '_' ||
|
1367
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1340
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1368
1341
|
END_STATE();
|
1369
1342
|
case 137:
|
1370
1343
|
ACCEPT_TOKEN(sym_string);
|
1371
|
-
if (lookahead == '
|
1344
|
+
if (lookahead == 'r') ADVANCE(123);
|
1372
1345
|
if (lookahead == ',' ||
|
1373
1346
|
lookahead == '-' ||
|
1374
1347
|
('0' <= lookahead && lookahead <= '9') ||
|
1375
1348
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1376
1349
|
lookahead == '_' ||
|
1377
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1350
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1378
1351
|
END_STATE();
|
1379
1352
|
case 138:
|
1380
1353
|
ACCEPT_TOKEN(sym_string);
|
1381
|
-
if (lookahead == '
|
1354
|
+
if (lookahead == 'r') ADVANCE(122);
|
1382
1355
|
if (lookahead == ',' ||
|
1383
1356
|
lookahead == '-' ||
|
1384
1357
|
('0' <= lookahead && lookahead <= '9') ||
|
1385
1358
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1386
1359
|
lookahead == '_' ||
|
1387
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1360
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1388
1361
|
END_STATE();
|
1389
1362
|
case 139:
|
1390
1363
|
ACCEPT_TOKEN(sym_string);
|
1391
|
-
if (lookahead == '
|
1364
|
+
if (lookahead == 's') ADVANCE(69);
|
1392
1365
|
if (lookahead == ',' ||
|
1393
1366
|
lookahead == '-' ||
|
1394
1367
|
('0' <= lookahead && lookahead <= '9') ||
|
1395
1368
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1396
1369
|
lookahead == '_' ||
|
1397
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1370
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1398
1371
|
END_STATE();
|
1399
1372
|
case 140:
|
1400
1373
|
ACCEPT_TOKEN(sym_string);
|
1401
|
-
if (lookahead == '
|
1374
|
+
if (lookahead == 's') ADVANCE(67);
|
1402
1375
|
if (lookahead == ',' ||
|
1403
1376
|
lookahead == '-' ||
|
1404
1377
|
('0' <= lookahead && lookahead <= '9') ||
|
1405
1378
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1406
1379
|
lookahead == '_' ||
|
1407
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1380
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1408
1381
|
END_STATE();
|
1409
1382
|
case 141:
|
1410
1383
|
ACCEPT_TOKEN(sym_string);
|
1411
|
-
if (lookahead == '
|
1384
|
+
if (lookahead == 's') ADVANCE(83);
|
1412
1385
|
if (lookahead == ',' ||
|
1413
1386
|
lookahead == '-' ||
|
1414
1387
|
('0' <= lookahead && lookahead <= '9') ||
|
1415
1388
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1416
1389
|
lookahead == '_' ||
|
1417
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1390
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1418
1391
|
END_STATE();
|
1419
1392
|
case 142:
|
1420
1393
|
ACCEPT_TOKEN(sym_string);
|
1421
|
-
if (lookahead == '
|
1394
|
+
if (lookahead == 's') ADVANCE(108);
|
1422
1395
|
if (lookahead == ',' ||
|
1423
1396
|
lookahead == '-' ||
|
1424
1397
|
('0' <= lookahead && lookahead <= '9') ||
|
1425
1398
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1426
1399
|
lookahead == '_' ||
|
1427
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1400
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1428
1401
|
END_STATE();
|
1429
1402
|
case 143:
|
1430
1403
|
ACCEPT_TOKEN(sym_string);
|
1404
|
+
if (lookahead == 't') ADVANCE(99);
|
1431
1405
|
if (lookahead == ',' ||
|
1432
1406
|
lookahead == '-' ||
|
1433
1407
|
('0' <= lookahead && lookahead <= '9') ||
|
1434
1408
|
('A' <= lookahead && lookahead <= 'Z') ||
|
1435
1409
|
lookahead == '_' ||
|
1436
|
-
('a' <= lookahead && lookahead <= 'z')) ADVANCE(
|
1410
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1437
1411
|
END_STATE();
|
1438
1412
|
case 144:
|
1439
|
-
ACCEPT_TOKEN(
|
1413
|
+
ACCEPT_TOKEN(sym_string);
|
1414
|
+
if (lookahead == 't') ADVANCE(98);
|
1415
|
+
if (lookahead == ',' ||
|
1416
|
+
lookahead == '-' ||
|
1417
|
+
('0' <= lookahead && lookahead <= '9') ||
|
1418
|
+
('A' <= lookahead && lookahead <= 'Z') ||
|
1419
|
+
lookahead == '_' ||
|
1420
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1440
1421
|
END_STATE();
|
1441
1422
|
case 145:
|
1423
|
+
ACCEPT_TOKEN(sym_string);
|
1424
|
+
if (lookahead == 't') ADVANCE(140);
|
1425
|
+
if (lookahead == ',' ||
|
1426
|
+
lookahead == '-' ||
|
1427
|
+
('0' <= lookahead && lookahead <= '9') ||
|
1428
|
+
('A' <= lookahead && lookahead <= 'Z') ||
|
1429
|
+
lookahead == '_' ||
|
1430
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1431
|
+
END_STATE();
|
1432
|
+
case 146:
|
1433
|
+
ACCEPT_TOKEN(sym_string);
|
1434
|
+
if (lookahead == 't') ADVANCE(127);
|
1435
|
+
if (lookahead == ',' ||
|
1436
|
+
lookahead == '-' ||
|
1437
|
+
('0' <= lookahead && lookahead <= '9') ||
|
1438
|
+
('A' <= lookahead && lookahead <= 'Z') ||
|
1439
|
+
lookahead == '_' ||
|
1440
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1441
|
+
END_STATE();
|
1442
|
+
case 147:
|
1443
|
+
ACCEPT_TOKEN(sym_string);
|
1444
|
+
if (lookahead == 'u') ADVANCE(107);
|
1445
|
+
if (lookahead == ',' ||
|
1446
|
+
lookahead == '-' ||
|
1447
|
+
('0' <= lookahead && lookahead <= '9') ||
|
1448
|
+
('A' <= lookahead && lookahead <= 'Z') ||
|
1449
|
+
lookahead == '_' ||
|
1450
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1451
|
+
END_STATE();
|
1452
|
+
case 148:
|
1453
|
+
ACCEPT_TOKEN(sym_string);
|
1454
|
+
if (lookahead == 'u') ADVANCE(112);
|
1455
|
+
if (lookahead == ',' ||
|
1456
|
+
lookahead == '-' ||
|
1457
|
+
('0' <= lookahead && lookahead <= '9') ||
|
1458
|
+
('A' <= lookahead && lookahead <= 'Z') ||
|
1459
|
+
lookahead == '_' ||
|
1460
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1461
|
+
END_STATE();
|
1462
|
+
case 149:
|
1463
|
+
ACCEPT_TOKEN(sym_string);
|
1464
|
+
if (lookahead == ',' ||
|
1465
|
+
lookahead == '-' ||
|
1466
|
+
('0' <= lookahead && lookahead <= '9') ||
|
1467
|
+
('A' <= lookahead && lookahead <= 'Z') ||
|
1468
|
+
lookahead == '_' ||
|
1469
|
+
('a' <= lookahead && lookahead <= 'z')) ADVANCE(149);
|
1470
|
+
END_STATE();
|
1471
|
+
case 150:
|
1472
|
+
ACCEPT_TOKEN(anon_sym_LPAREN);
|
1473
|
+
END_STATE();
|
1474
|
+
case 151:
|
1442
1475
|
ACCEPT_TOKEN(anon_sym_RPAREN);
|
1443
1476
|
END_STATE();
|
1444
1477
|
default:
|
@@ -1454,8 +1487,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = {
|
|
1454
1487
|
[4] = {.lex_state = 0},
|
1455
1488
|
[5] = {.lex_state = 0},
|
1456
1489
|
[6] = {.lex_state = 0},
|
1457
|
-
[7] = {.lex_state =
|
1458
|
-
[8] = {.lex_state =
|
1490
|
+
[7] = {.lex_state = 62},
|
1491
|
+
[8] = {.lex_state = 62},
|
1459
1492
|
[9] = {.lex_state = 1},
|
1460
1493
|
[10] = {.lex_state = 1},
|
1461
1494
|
[11] = {.lex_state = 0},
|
@@ -1483,23 +1516,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = {
|
|
1483
1516
|
[33] = {.lex_state = 0},
|
1484
1517
|
[34] = {.lex_state = 0},
|
1485
1518
|
[35] = {.lex_state = 0},
|
1486
|
-
[36] = {.lex_state =
|
1487
|
-
[37] = {.lex_state =
|
1519
|
+
[36] = {.lex_state = 62},
|
1520
|
+
[37] = {.lex_state = 62},
|
1488
1521
|
[38] = {.lex_state = 0},
|
1489
|
-
[39] = {.lex_state =
|
1490
|
-
[40] = {.lex_state =
|
1491
|
-
[41] = {.lex_state =
|
1492
|
-
[42] = {.lex_state =
|
1493
|
-
[43] = {.lex_state =
|
1522
|
+
[39] = {.lex_state = 62},
|
1523
|
+
[40] = {.lex_state = 62},
|
1524
|
+
[41] = {.lex_state = 62},
|
1525
|
+
[42] = {.lex_state = 62},
|
1526
|
+
[43] = {.lex_state = 62},
|
1494
1527
|
[44] = {.lex_state = 1},
|
1495
1528
|
[45] = {.lex_state = 1},
|
1496
1529
|
[46] = {.lex_state = 1},
|
1497
|
-
[47] = {.lex_state =
|
1530
|
+
[47] = {.lex_state = 62},
|
1498
1531
|
[48] = {.lex_state = 1},
|
1499
1532
|
[49] = {.lex_state = 1},
|
1500
1533
|
[50] = {.lex_state = 1},
|
1501
1534
|
[51] = {.lex_state = 1},
|
1502
|
-
[52] = {.lex_state =
|
1535
|
+
[52] = {.lex_state = 62},
|
1503
1536
|
[53] = {.lex_state = 0},
|
1504
1537
|
[54] = {.lex_state = 1},
|
1505
1538
|
[55] = {.lex_state = 0},
|
@@ -1509,7 +1542,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = {
|
|
1509
1542
|
[59] = {.lex_state = 0},
|
1510
1543
|
[60] = {.lex_state = 0},
|
1511
1544
|
[61] = {.lex_state = 0},
|
1512
|
-
[62] = {.lex_state =
|
1545
|
+
[62] = {.lex_state = 62},
|
1513
1546
|
[63] = {.lex_state = 0},
|
1514
1547
|
[64] = {.lex_state = 0},
|
1515
1548
|
[65] = {.lex_state = 0},
|
@@ -1523,7 +1556,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = {
|
|
1523
1556
|
[73] = {.lex_state = 0},
|
1524
1557
|
[74] = {.lex_state = 0},
|
1525
1558
|
[75] = {.lex_state = 0},
|
1526
|
-
[76] = {.lex_state =
|
1559
|
+
[76] = {.lex_state = 62},
|
1527
1560
|
[77] = {.lex_state = 0},
|
1528
1561
|
[78] = {.lex_state = 0},
|
1529
1562
|
[79] = {.lex_state = 0},
|
@@ -1534,8 +1567,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = {
|
|
1534
1567
|
[84] = {.lex_state = 0},
|
1535
1568
|
[85] = {.lex_state = 0},
|
1536
1569
|
[86] = {.lex_state = 0},
|
1537
|
-
[87] = {.lex_state =
|
1538
|
-
[88] = {.lex_state =
|
1570
|
+
[87] = {.lex_state = 0},
|
1571
|
+
[88] = {.lex_state = 62},
|
1539
1572
|
[89] = {.lex_state = 0},
|
1540
1573
|
[90] = {.lex_state = 1},
|
1541
1574
|
[91] = {.lex_state = 1},
|
@@ -1550,7 +1583,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = {
|
|
1550
1583
|
[100] = {.lex_state = 0},
|
1551
1584
|
[101] = {.lex_state = 0},
|
1552
1585
|
[102] = {.lex_state = 0},
|
1553
|
-
[103] = {.lex_state =
|
1586
|
+
[103] = {.lex_state = 0},
|
1554
1587
|
[104] = {.lex_state = 2},
|
1555
1588
|
[105] = {.lex_state = 2},
|
1556
1589
|
[106] = {.lex_state = 2},
|
@@ -1558,32 +1591,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = {
|
|
1558
1591
|
[108] = {.lex_state = 2},
|
1559
1592
|
[109] = {.lex_state = 2},
|
1560
1593
|
[110] = {.lex_state = 2},
|
1561
|
-
[111] = {.lex_state =
|
1594
|
+
[111] = {.lex_state = 0},
|
1562
1595
|
[112] = {.lex_state = 2},
|
1563
|
-
[113] = {.lex_state =
|
1596
|
+
[113] = {.lex_state = 2},
|
1564
1597
|
[114] = {.lex_state = 2},
|
1565
1598
|
[115] = {.lex_state = 2},
|
1566
|
-
[116] = {.lex_state =
|
1567
|
-
[117] = {.lex_state =
|
1599
|
+
[116] = {.lex_state = 0},
|
1600
|
+
[117] = {.lex_state = 0},
|
1568
1601
|
[118] = {.lex_state = 2},
|
1569
|
-
[119] = {.lex_state =
|
1570
|
-
[120] = {.lex_state =
|
1571
|
-
[121] = {.lex_state =
|
1602
|
+
[119] = {.lex_state = 2},
|
1603
|
+
[120] = {.lex_state = 2},
|
1604
|
+
[121] = {.lex_state = 2},
|
1572
1605
|
[122] = {.lex_state = 0},
|
1573
1606
|
[123] = {.lex_state = 0},
|
1574
|
-
[124] = {.lex_state =
|
1575
|
-
[125] = {.lex_state =
|
1607
|
+
[124] = {.lex_state = 0},
|
1608
|
+
[125] = {.lex_state = 2},
|
1576
1609
|
[126] = {.lex_state = 0},
|
1577
1610
|
[127] = {.lex_state = 2},
|
1578
1611
|
[128] = {.lex_state = 2},
|
1579
|
-
[129] = {.lex_state =
|
1580
|
-
[130] = {.lex_state =
|
1612
|
+
[129] = {.lex_state = 0},
|
1613
|
+
[130] = {.lex_state = 2},
|
1581
1614
|
[131] = {.lex_state = 0},
|
1582
1615
|
[132] = {.lex_state = 0},
|
1583
1616
|
[133] = {.lex_state = 2},
|
1584
1617
|
[134] = {.lex_state = 2},
|
1585
|
-
[135] = {.lex_state =
|
1586
|
-
[136] = {.lex_state =
|
1618
|
+
[135] = {.lex_state = 0},
|
1619
|
+
[136] = {.lex_state = 2},
|
1620
|
+
[137] = {.lex_state = 2},
|
1621
|
+
[138] = {.lex_state = 0},
|
1587
1622
|
};
|
1588
1623
|
|
1589
1624
|
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
|
@@ -1605,6 +1640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
|
|
1605
1640
|
[anon_sym_shell] = ACTIONS(1),
|
1606
1641
|
[anon_sym_file] = ACTIONS(1),
|
1607
1642
|
[anon_sym_dir] = ACTIONS(1),
|
1643
|
+
[anon_sym_method] = ACTIONS(1),
|
1608
1644
|
[anon_sym_flagarg] = ACTIONS(1),
|
1609
1645
|
[anon_sym_flag] = ACTIONS(1),
|
1610
1646
|
[anon_sym_reqd] = ACTIONS(1),
|
@@ -1615,7 +1651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
|
|
1615
1651
|
[anon_sym_RPAREN] = ACTIONS(1),
|
1616
1652
|
},
|
1617
1653
|
[1] = {
|
1618
|
-
[sym_source_file] = STATE(
|
1654
|
+
[sym_source_file] = STATE(135),
|
1619
1655
|
[sym__toplevel_statement] = STATE(6),
|
1620
1656
|
[sym__common_statement] = STATE(6),
|
1621
1657
|
[sym_include_statement] = STATE(6),
|
@@ -1628,7 +1664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
|
|
1628
1664
|
[sym_arg_statement] = STATE(6),
|
1629
1665
|
[sym_flagarg_statement] = STATE(6),
|
1630
1666
|
[sym_flag_statement] = STATE(6),
|
1631
|
-
[sym_flag_modifier] = STATE(
|
1667
|
+
[sym_flag_modifier] = STATE(129),
|
1632
1668
|
[aux_sym_source_file_repeat1] = STATE(6),
|
1633
1669
|
[ts_builtin_sym_end] = ACTIONS(3),
|
1634
1670
|
[anon_sym_include] = ACTIONS(5),
|
@@ -1658,9 +1694,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
|
|
1658
1694
|
[sym_opts_shell_statement] = STATE(2),
|
1659
1695
|
[sym_opts_file_statement] = STATE(2),
|
1660
1696
|
[sym_opts_dir_statement] = STATE(2),
|
1697
|
+
[sym_opts_method_statement] = STATE(2),
|
1661
1698
|
[sym_flagarg_statement] = STATE(2),
|
1662
1699
|
[sym_flag_statement] = STATE(2),
|
1663
|
-
[sym_flag_modifier] = STATE(
|
1700
|
+
[sym_flag_modifier] = STATE(124),
|
1664
1701
|
[aux_sym_block_repeat1] = STATE(2),
|
1665
1702
|
[anon_sym_include] = ACTIONS(29),
|
1666
1703
|
[sym__comment] = ACTIONS(32),
|
@@ -1689,9 +1726,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
|
|
1689
1726
|
[sym_opts_shell_statement] = STATE(2),
|
1690
1727
|
[sym_opts_file_statement] = STATE(2),
|
1691
1728
|
[sym_opts_dir_statement] = STATE(2),
|
1729
|
+
[sym_opts_method_statement] = STATE(2),
|
1692
1730
|
[sym_flagarg_statement] = STATE(2),
|
1693
1731
|
[sym_flag_statement] = STATE(2),
|
1694
|
-
[sym_flag_modifier] = STATE(
|
1732
|
+
[sym_flag_modifier] = STATE(124),
|
1695
1733
|
[aux_sym_block_repeat1] = STATE(2),
|
1696
1734
|
[anon_sym_include] = ACTIONS(5),
|
1697
1735
|
[sym__comment] = ACTIONS(64),
|
@@ -1710,52 +1748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
|
|
1710
1748
|
};
|
1711
1749
|
|
1712
1750
|
static const uint16_t ts_small_parse_table[] = {
|
1713
|
-
[0] =
|
1714
|
-
ACTIONS(82), 1,
|
1715
|
-
ts_builtin_sym_end,
|
1716
|
-
ACTIONS(84), 1,
|
1717
|
-
anon_sym_include,
|
1718
|
-
ACTIONS(87), 1,
|
1719
|
-
anon_sym_defopts,
|
1720
|
-
ACTIONS(90), 1,
|
1721
|
-
anon_sym_defargs,
|
1722
|
-
ACTIONS(93), 1,
|
1723
|
-
sym__comment,
|
1724
|
-
ACTIONS(96), 1,
|
1725
|
-
anon_sym_sub,
|
1726
|
-
ACTIONS(99), 1,
|
1727
|
-
anon_sym_cmd,
|
1728
|
-
ACTIONS(102), 1,
|
1729
|
-
anon_sym_desc,
|
1730
|
-
ACTIONS(108), 1,
|
1731
|
-
anon_sym_flagarg,
|
1732
|
-
ACTIONS(111), 1,
|
1733
|
-
anon_sym_flag,
|
1734
|
-
ACTIONS(114), 1,
|
1735
|
-
anon_sym_reqd,
|
1736
|
-
ACTIONS(117), 1,
|
1737
|
-
sym_arg_modifier,
|
1738
|
-
STATE(8), 1,
|
1739
|
-
sym_arg_type,
|
1740
|
-
STATE(123), 1,
|
1741
|
-
sym_flag_modifier,
|
1742
|
-
ACTIONS(105), 2,
|
1743
|
-
anon_sym_arg,
|
1744
|
-
anon_sym_varargs,
|
1745
|
-
STATE(4), 12,
|
1746
|
-
sym__toplevel_statement,
|
1747
|
-
sym__common_statement,
|
1748
|
-
sym_include_statement,
|
1749
|
-
sym_defopts_statement,
|
1750
|
-
sym_defargs_statement,
|
1751
|
-
sym_sub_statement,
|
1752
|
-
sym_cmd_statement,
|
1753
|
-
sym_desc_statement,
|
1754
|
-
sym_arg_statement,
|
1755
|
-
sym_flagarg_statement,
|
1756
|
-
sym_flag_statement,
|
1757
|
-
aux_sym_source_file_repeat1,
|
1758
|
-
[61] = 14,
|
1751
|
+
[0] = 14,
|
1759
1752
|
ACTIONS(5), 1,
|
1760
1753
|
anon_sym_include,
|
1761
1754
|
ACTIONS(17), 1,
|
@@ -1774,16 +1767,16 @@ static const uint16_t ts_small_parse_table[] = {
|
|
1774
1767
|
anon_sym_flag,
|
1775
1768
|
ACTIONS(78), 1,
|
1776
1769
|
sym_arg_modifier,
|
1777
|
-
ACTIONS(
|
1770
|
+
ACTIONS(82), 1,
|
1778
1771
|
sym__comment,
|
1779
1772
|
STATE(9), 1,
|
1780
1773
|
sym_arg_type,
|
1781
|
-
STATE(
|
1774
|
+
STATE(124), 1,
|
1782
1775
|
sym_flag_modifier,
|
1783
1776
|
ACTIONS(70), 2,
|
1784
1777
|
anon_sym_arg,
|
1785
1778
|
anon_sym_varargs,
|
1786
|
-
STATE(3),
|
1779
|
+
STATE(3), 15,
|
1787
1780
|
sym__common_statement,
|
1788
1781
|
sym__block_statement,
|
1789
1782
|
sym_include_statement,
|
@@ -1795,10 +1788,56 @@ static const uint16_t ts_small_parse_table[] = {
|
|
1795
1788
|
sym_opts_shell_statement,
|
1796
1789
|
sym_opts_file_statement,
|
1797
1790
|
sym_opts_dir_statement,
|
1791
|
+
sym_opts_method_statement,
|
1798
1792
|
sym_flagarg_statement,
|
1799
1793
|
sym_flag_statement,
|
1800
1794
|
aux_sym_block_repeat1,
|
1801
|
-
[
|
1795
|
+
[58] = 16,
|
1796
|
+
ACTIONS(84), 1,
|
1797
|
+
ts_builtin_sym_end,
|
1798
|
+
ACTIONS(86), 1,
|
1799
|
+
anon_sym_include,
|
1800
|
+
ACTIONS(89), 1,
|
1801
|
+
anon_sym_defopts,
|
1802
|
+
ACTIONS(92), 1,
|
1803
|
+
anon_sym_defargs,
|
1804
|
+
ACTIONS(95), 1,
|
1805
|
+
sym__comment,
|
1806
|
+
ACTIONS(98), 1,
|
1807
|
+
anon_sym_sub,
|
1808
|
+
ACTIONS(101), 1,
|
1809
|
+
anon_sym_cmd,
|
1810
|
+
ACTIONS(104), 1,
|
1811
|
+
anon_sym_desc,
|
1812
|
+
ACTIONS(110), 1,
|
1813
|
+
anon_sym_flagarg,
|
1814
|
+
ACTIONS(113), 1,
|
1815
|
+
anon_sym_flag,
|
1816
|
+
ACTIONS(116), 1,
|
1817
|
+
anon_sym_reqd,
|
1818
|
+
ACTIONS(119), 1,
|
1819
|
+
sym_arg_modifier,
|
1820
|
+
STATE(8), 1,
|
1821
|
+
sym_arg_type,
|
1822
|
+
STATE(129), 1,
|
1823
|
+
sym_flag_modifier,
|
1824
|
+
ACTIONS(107), 2,
|
1825
|
+
anon_sym_arg,
|
1826
|
+
anon_sym_varargs,
|
1827
|
+
STATE(5), 12,
|
1828
|
+
sym__toplevel_statement,
|
1829
|
+
sym__common_statement,
|
1830
|
+
sym_include_statement,
|
1831
|
+
sym_defopts_statement,
|
1832
|
+
sym_defargs_statement,
|
1833
|
+
sym_sub_statement,
|
1834
|
+
sym_cmd_statement,
|
1835
|
+
sym_desc_statement,
|
1836
|
+
sym_arg_statement,
|
1837
|
+
sym_flagarg_statement,
|
1838
|
+
sym_flag_statement,
|
1839
|
+
aux_sym_source_file_repeat1,
|
1840
|
+
[119] = 16,
|
1802
1841
|
ACTIONS(5), 1,
|
1803
1842
|
anon_sym_include,
|
1804
1843
|
ACTIONS(7), 1,
|
@@ -1825,12 +1864,12 @@ static const uint16_t ts_small_parse_table[] = {
|
|
1825
1864
|
sym__comment,
|
1826
1865
|
STATE(8), 1,
|
1827
1866
|
sym_arg_type,
|
1828
|
-
STATE(
|
1867
|
+
STATE(129), 1,
|
1829
1868
|
sym_flag_modifier,
|
1830
1869
|
ACTIONS(19), 2,
|
1831
1870
|
anon_sym_arg,
|
1832
1871
|
anon_sym_varargs,
|
1833
|
-
STATE(
|
1872
|
+
STATE(5), 12,
|
1834
1873
|
sym__toplevel_statement,
|
1835
1874
|
sym__common_statement,
|
1836
1875
|
sym_include_statement,
|
@@ -1843,7 +1882,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
1843
1882
|
sym_flagarg_statement,
|
1844
1883
|
sym_flag_statement,
|
1845
1884
|
aux_sym_source_file_repeat1,
|
1846
|
-
[
|
1885
|
+
[180] = 10,
|
1847
1886
|
ACTIONS(130), 1,
|
1848
1887
|
sym_at_identifier,
|
1849
1888
|
ACTIONS(132), 1,
|
@@ -1877,7 +1916,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
1877
1916
|
anon_sym_flag,
|
1878
1917
|
anon_sym_reqd,
|
1879
1918
|
sym_arg_modifier,
|
1880
|
-
[
|
1919
|
+
[224] = 10,
|
1881
1920
|
ACTIONS(130), 1,
|
1882
1921
|
sym_at_identifier,
|
1883
1922
|
ACTIONS(132), 1,
|
@@ -1911,7 +1950,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
1911
1950
|
anon_sym_flag,
|
1912
1951
|
anon_sym_reqd,
|
1913
1952
|
sym_arg_modifier,
|
1914
|
-
[
|
1953
|
+
[268] = 10,
|
1915
1954
|
ACTIONS(130), 1,
|
1916
1955
|
sym_at_identifier,
|
1917
1956
|
ACTIONS(132), 1,
|
@@ -1944,7 +1983,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
1944
1983
|
anon_sym_flag,
|
1945
1984
|
anon_sym_reqd,
|
1946
1985
|
sym_arg_modifier,
|
1947
|
-
[
|
1986
|
+
[311] = 10,
|
1948
1987
|
ACTIONS(130), 1,
|
1949
1988
|
sym_at_identifier,
|
1950
1989
|
ACTIONS(132), 1,
|
@@ -1977,7 +2016,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
1977
2016
|
anon_sym_flag,
|
1978
2017
|
anon_sym_reqd,
|
1979
2018
|
sym_arg_modifier,
|
1980
|
-
[
|
2019
|
+
[354] = 6,
|
1981
2020
|
ACTIONS(132), 1,
|
1982
2021
|
anon_sym_LBRACE,
|
1983
2022
|
ACTIONS(148), 1,
|
@@ -2005,7 +2044,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2005
2044
|
anon_sym_flagarg,
|
2006
2045
|
anon_sym_reqd,
|
2007
2046
|
anon_sym_RBRACE,
|
2008
|
-
[
|
2047
|
+
[388] = 6,
|
2009
2048
|
ACTIONS(130), 1,
|
2010
2049
|
sym_at_identifier,
|
2011
2050
|
ACTIONS(132), 1,
|
@@ -2033,7 +2072,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2033
2072
|
anon_sym_flagarg,
|
2034
2073
|
anon_sym_reqd,
|
2035
2074
|
anon_sym_RBRACE,
|
2036
|
-
[
|
2075
|
+
[422] = 6,
|
2037
2076
|
ACTIONS(132), 1,
|
2038
2077
|
anon_sym_LBRACE,
|
2039
2078
|
ACTIONS(158), 1,
|
@@ -2061,7 +2100,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2061
2100
|
anon_sym_flagarg,
|
2062
2101
|
anon_sym_reqd,
|
2063
2102
|
anon_sym_RBRACE,
|
2064
|
-
[
|
2103
|
+
[456] = 6,
|
2065
2104
|
ACTIONS(132), 1,
|
2066
2105
|
anon_sym_LBRACE,
|
2067
2106
|
ACTIONS(158), 1,
|
@@ -2089,7 +2128,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2089
2128
|
anon_sym_flagarg,
|
2090
2129
|
anon_sym_reqd,
|
2091
2130
|
anon_sym_RBRACE,
|
2092
|
-
[
|
2131
|
+
[490] = 6,
|
2093
2132
|
ACTIONS(132), 1,
|
2094
2133
|
anon_sym_LBRACE,
|
2095
2134
|
ACTIONS(158), 1,
|
@@ -2117,7 +2156,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2117
2156
|
anon_sym_flagarg,
|
2118
2157
|
anon_sym_reqd,
|
2119
2158
|
anon_sym_RBRACE,
|
2120
|
-
[
|
2159
|
+
[524] = 6,
|
2121
2160
|
ACTIONS(130), 1,
|
2122
2161
|
sym_at_identifier,
|
2123
2162
|
ACTIONS(132), 1,
|
@@ -2145,7 +2184,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2145
2184
|
anon_sym_flagarg,
|
2146
2185
|
anon_sym_reqd,
|
2147
2186
|
anon_sym_RBRACE,
|
2148
|
-
[
|
2187
|
+
[558] = 6,
|
2149
2188
|
ACTIONS(132), 1,
|
2150
2189
|
anon_sym_LBRACE,
|
2151
2190
|
ACTIONS(158), 1,
|
@@ -2173,7 +2212,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2173
2212
|
anon_sym_flagarg,
|
2174
2213
|
anon_sym_reqd,
|
2175
2214
|
anon_sym_RBRACE,
|
2176
|
-
[
|
2215
|
+
[592] = 6,
|
2177
2216
|
ACTIONS(132), 1,
|
2178
2217
|
anon_sym_LBRACE,
|
2179
2218
|
ACTIONS(180), 1,
|
@@ -2201,7 +2240,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2201
2240
|
anon_sym_flagarg,
|
2202
2241
|
anon_sym_reqd,
|
2203
2242
|
anon_sym_RBRACE,
|
2204
|
-
[
|
2243
|
+
[626] = 6,
|
2205
2244
|
ACTIONS(132), 1,
|
2206
2245
|
anon_sym_LBRACE,
|
2207
2246
|
ACTIONS(158), 1,
|
@@ -2229,7 +2268,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2229
2268
|
anon_sym_flagarg,
|
2230
2269
|
anon_sym_reqd,
|
2231
2270
|
anon_sym_RBRACE,
|
2232
|
-
[
|
2271
|
+
[660] = 6,
|
2233
2272
|
ACTIONS(132), 1,
|
2234
2273
|
anon_sym_LBRACE,
|
2235
2274
|
ACTIONS(190), 1,
|
@@ -2257,7 +2296,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2257
2296
|
anon_sym_flagarg,
|
2258
2297
|
anon_sym_reqd,
|
2259
2298
|
anon_sym_RBRACE,
|
2260
|
-
[
|
2299
|
+
[694] = 6,
|
2261
2300
|
ACTIONS(132), 1,
|
2262
2301
|
anon_sym_LBRACE,
|
2263
2302
|
ACTIONS(196), 1,
|
@@ -2285,14 +2324,14 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2285
2324
|
anon_sym_flagarg,
|
2286
2325
|
anon_sym_reqd,
|
2287
2326
|
anon_sym_RBRACE,
|
2288
|
-
[
|
2327
|
+
[728] = 6,
|
2289
2328
|
ACTIONS(132), 1,
|
2290
2329
|
anon_sym_LBRACE,
|
2291
2330
|
ACTIONS(158), 1,
|
2292
2331
|
sym_at_identifier,
|
2293
2332
|
STATE(35), 1,
|
2294
2333
|
aux_sym_sub_statement_repeat1,
|
2295
|
-
STATE(
|
2334
|
+
STATE(83), 1,
|
2296
2335
|
sym_block,
|
2297
2336
|
ACTIONS(202), 2,
|
2298
2337
|
anon_sym_flag,
|
@@ -2313,7 +2352,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2313
2352
|
anon_sym_flagarg,
|
2314
2353
|
anon_sym_reqd,
|
2315
2354
|
anon_sym_RBRACE,
|
2316
|
-
[
|
2355
|
+
[762] = 6,
|
2317
2356
|
ACTIONS(132), 1,
|
2318
2357
|
anon_sym_LBRACE,
|
2319
2358
|
ACTIONS(158), 1,
|
@@ -2341,7 +2380,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2341
2380
|
anon_sym_flagarg,
|
2342
2381
|
anon_sym_reqd,
|
2343
2382
|
anon_sym_RBRACE,
|
2344
|
-
[
|
2383
|
+
[796] = 6,
|
2345
2384
|
ACTIONS(130), 1,
|
2346
2385
|
sym_at_identifier,
|
2347
2386
|
ACTIONS(132), 1,
|
@@ -2369,7 +2408,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2369
2408
|
anon_sym_flagarg,
|
2370
2409
|
anon_sym_reqd,
|
2371
2410
|
anon_sym_RBRACE,
|
2372
|
-
[
|
2411
|
+
[830] = 6,
|
2373
2412
|
ACTIONS(130), 1,
|
2374
2413
|
sym_at_identifier,
|
2375
2414
|
ACTIONS(132), 1,
|
@@ -2397,7 +2436,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2397
2436
|
anon_sym_flagarg,
|
2398
2437
|
anon_sym_reqd,
|
2399
2438
|
anon_sym_RBRACE,
|
2400
|
-
[
|
2439
|
+
[864] = 6,
|
2401
2440
|
ACTIONS(130), 1,
|
2402
2441
|
sym_at_identifier,
|
2403
2442
|
ACTIONS(132), 1,
|
@@ -2425,7 +2464,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2425
2464
|
anon_sym_flagarg,
|
2426
2465
|
anon_sym_reqd,
|
2427
2466
|
anon_sym_RBRACE,
|
2428
|
-
[
|
2467
|
+
[898] = 6,
|
2429
2468
|
ACTIONS(130), 1,
|
2430
2469
|
sym_at_identifier,
|
2431
2470
|
ACTIONS(132), 1,
|
@@ -2453,7 +2492,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2453
2492
|
anon_sym_flagarg,
|
2454
2493
|
anon_sym_reqd,
|
2455
2494
|
anon_sym_RBRACE,
|
2456
|
-
[
|
2495
|
+
[932] = 6,
|
2457
2496
|
ACTIONS(132), 1,
|
2458
2497
|
anon_sym_LBRACE,
|
2459
2498
|
ACTIONS(158), 1,
|
@@ -2481,14 +2520,14 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2481
2520
|
anon_sym_flagarg,
|
2482
2521
|
anon_sym_reqd,
|
2483
2522
|
anon_sym_RBRACE,
|
2484
|
-
[
|
2523
|
+
[966] = 6,
|
2485
2524
|
ACTIONS(132), 1,
|
2486
2525
|
anon_sym_LBRACE,
|
2487
2526
|
ACTIONS(158), 1,
|
2488
2527
|
sym_at_identifier,
|
2489
2528
|
STATE(35), 1,
|
2490
2529
|
aux_sym_sub_statement_repeat1,
|
2491
|
-
STATE(
|
2530
|
+
STATE(82), 1,
|
2492
2531
|
sym_block,
|
2493
2532
|
ACTIONS(226), 2,
|
2494
2533
|
anon_sym_flag,
|
@@ -2509,7 +2548,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2509
2548
|
anon_sym_flagarg,
|
2510
2549
|
anon_sym_reqd,
|
2511
2550
|
anon_sym_RBRACE,
|
2512
|
-
[
|
2551
|
+
[1000] = 6,
|
2513
2552
|
ACTIONS(132), 1,
|
2514
2553
|
anon_sym_LBRACE,
|
2515
2554
|
ACTIONS(230), 1,
|
@@ -2537,7 +2576,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2537
2576
|
anon_sym_flagarg,
|
2538
2577
|
anon_sym_reqd,
|
2539
2578
|
anon_sym_RBRACE,
|
2540
|
-
[
|
2579
|
+
[1034] = 6,
|
2541
2580
|
ACTIONS(130), 1,
|
2542
2581
|
sym_at_identifier,
|
2543
2582
|
ACTIONS(132), 1,
|
@@ -2565,14 +2604,14 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2565
2604
|
anon_sym_flagarg,
|
2566
2605
|
anon_sym_reqd,
|
2567
2606
|
anon_sym_RBRACE,
|
2568
|
-
[
|
2607
|
+
[1068] = 6,
|
2569
2608
|
ACTIONS(132), 1,
|
2570
2609
|
anon_sym_LBRACE,
|
2571
2610
|
ACTIONS(158), 1,
|
2572
2611
|
sym_at_identifier,
|
2573
2612
|
STATE(35), 1,
|
2574
2613
|
aux_sym_sub_statement_repeat1,
|
2575
|
-
STATE(
|
2614
|
+
STATE(53), 1,
|
2576
2615
|
sym_block,
|
2577
2616
|
ACTIONS(240), 2,
|
2578
2617
|
anon_sym_flag,
|
@@ -2593,14 +2632,14 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2593
2632
|
anon_sym_flagarg,
|
2594
2633
|
anon_sym_reqd,
|
2595
2634
|
anon_sym_RBRACE,
|
2596
|
-
[
|
2635
|
+
[1102] = 6,
|
2597
2636
|
ACTIONS(130), 1,
|
2598
2637
|
sym_at_identifier,
|
2599
2638
|
ACTIONS(132), 1,
|
2600
2639
|
anon_sym_LBRACE,
|
2601
2640
|
STATE(34), 1,
|
2602
2641
|
aux_sym_arg_statement_repeat1,
|
2603
|
-
STATE(
|
2642
|
+
STATE(87), 1,
|
2604
2643
|
sym_block,
|
2605
2644
|
ACTIONS(210), 2,
|
2606
2645
|
anon_sym_flag,
|
@@ -2621,7 +2660,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2621
2660
|
anon_sym_flagarg,
|
2622
2661
|
anon_sym_reqd,
|
2623
2662
|
anon_sym_RBRACE,
|
2624
|
-
[
|
2663
|
+
[1136] = 4,
|
2625
2664
|
ACTIONS(244), 1,
|
2626
2665
|
sym_at_identifier,
|
2627
2666
|
STATE(34), 1,
|
@@ -2646,7 +2685,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2646
2685
|
anon_sym_reqd,
|
2647
2686
|
anon_sym_LBRACE,
|
2648
2687
|
anon_sym_RBRACE,
|
2649
|
-
[
|
2688
|
+
[1165] = 4,
|
2650
2689
|
ACTIONS(251), 1,
|
2651
2690
|
sym_at_identifier,
|
2652
2691
|
STATE(35), 1,
|
@@ -2671,7 +2710,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2671
2710
|
anon_sym_reqd,
|
2672
2711
|
anon_sym_LBRACE,
|
2673
2712
|
anon_sym_RBRACE,
|
2674
|
-
[
|
2713
|
+
[1194] = 7,
|
2675
2714
|
ACTIONS(130), 1,
|
2676
2715
|
sym_at_identifier,
|
2677
2716
|
ACTIONS(132), 1,
|
@@ -2698,7 +2737,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2698
2737
|
anon_sym_flag,
|
2699
2738
|
anon_sym_reqd,
|
2700
2739
|
sym_arg_modifier,
|
2701
|
-
[
|
2740
|
+
[1228] = 7,
|
2702
2741
|
ACTIONS(132), 1,
|
2703
2742
|
anon_sym_LBRACE,
|
2704
2743
|
ACTIONS(262), 1,
|
@@ -2725,7 +2764,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2725
2764
|
anon_sym_flag,
|
2726
2765
|
anon_sym_reqd,
|
2727
2766
|
sym_arg_modifier,
|
2728
|
-
[
|
2767
|
+
[1262] = 2,
|
2729
2768
|
ACTIONS(268), 2,
|
2730
2769
|
anon_sym_flag,
|
2731
2770
|
sym_arg_modifier,
|
@@ -2747,7 +2786,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2747
2786
|
anon_sym_reqd,
|
2748
2787
|
anon_sym_LBRACE,
|
2749
2788
|
anon_sym_RBRACE,
|
2750
|
-
[
|
2789
|
+
[1286] = 7,
|
2751
2790
|
ACTIONS(132), 1,
|
2752
2791
|
anon_sym_LBRACE,
|
2753
2792
|
ACTIONS(274), 1,
|
@@ -2756,7 +2795,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2756
2795
|
sym_string,
|
2757
2796
|
STATE(19), 1,
|
2758
2797
|
aux_sym_sub_statement_repeat1,
|
2759
|
-
STATE(
|
2798
|
+
STATE(89), 1,
|
2760
2799
|
sym_block,
|
2761
2800
|
ACTIONS(270), 2,
|
2762
2801
|
ts_builtin_sym_end,
|
@@ -2774,7 +2813,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2774
2813
|
anon_sym_flag,
|
2775
2814
|
anon_sym_reqd,
|
2776
2815
|
sym_arg_modifier,
|
2777
|
-
[
|
2816
|
+
[1320] = 7,
|
2778
2817
|
ACTIONS(132), 1,
|
2779
2818
|
anon_sym_LBRACE,
|
2780
2819
|
ACTIONS(282), 1,
|
@@ -2801,7 +2840,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2801
2840
|
anon_sym_flag,
|
2802
2841
|
anon_sym_reqd,
|
2803
2842
|
sym_arg_modifier,
|
2804
|
-
[
|
2843
|
+
[1354] = 7,
|
2805
2844
|
ACTIONS(132), 1,
|
2806
2845
|
anon_sym_LBRACE,
|
2807
2846
|
ACTIONS(290), 1,
|
@@ -2828,7 +2867,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2828
2867
|
anon_sym_flag,
|
2829
2868
|
anon_sym_reqd,
|
2830
2869
|
sym_arg_modifier,
|
2831
|
-
[
|
2870
|
+
[1388] = 7,
|
2832
2871
|
ACTIONS(132), 1,
|
2833
2872
|
anon_sym_LBRACE,
|
2834
2873
|
ACTIONS(298), 1,
|
@@ -2837,7 +2876,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2837
2876
|
sym_string,
|
2838
2877
|
STATE(17), 1,
|
2839
2878
|
aux_sym_sub_statement_repeat1,
|
2840
|
-
STATE(
|
2879
|
+
STATE(86), 1,
|
2841
2880
|
sym_block,
|
2842
2881
|
ACTIONS(294), 2,
|
2843
2882
|
ts_builtin_sym_end,
|
@@ -2855,7 +2894,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2855
2894
|
anon_sym_flag,
|
2856
2895
|
anon_sym_reqd,
|
2857
2896
|
sym_arg_modifier,
|
2858
|
-
[
|
2897
|
+
[1422] = 7,
|
2859
2898
|
ACTIONS(130), 1,
|
2860
2899
|
sym_at_identifier,
|
2861
2900
|
ACTIONS(132), 1,
|
@@ -2882,7 +2921,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2882
2921
|
anon_sym_flag,
|
2883
2922
|
anon_sym_reqd,
|
2884
2923
|
sym_arg_modifier,
|
2885
|
-
[
|
2924
|
+
[1456] = 7,
|
2886
2925
|
ACTIONS(132), 1,
|
2887
2926
|
anon_sym_LBRACE,
|
2888
2927
|
ACTIONS(298), 1,
|
@@ -2891,7 +2930,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2891
2930
|
sym_string,
|
2892
2931
|
STATE(17), 1,
|
2893
2932
|
aux_sym_sub_statement_repeat1,
|
2894
|
-
STATE(
|
2933
|
+
STATE(86), 1,
|
2895
2934
|
sym_block,
|
2896
2935
|
ACTIONS(294), 2,
|
2897
2936
|
sym__comment,
|
@@ -2908,7 +2947,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2908
2947
|
anon_sym_flag,
|
2909
2948
|
anon_sym_reqd,
|
2910
2949
|
sym_arg_modifier,
|
2911
|
-
[
|
2950
|
+
[1489] = 7,
|
2912
2951
|
ACTIONS(132), 1,
|
2913
2952
|
anon_sym_LBRACE,
|
2914
2953
|
ACTIONS(290), 1,
|
@@ -2934,7 +2973,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2934
2973
|
anon_sym_flag,
|
2935
2974
|
anon_sym_reqd,
|
2936
2975
|
sym_arg_modifier,
|
2937
|
-
[
|
2976
|
+
[1522] = 7,
|
2938
2977
|
ACTIONS(132), 1,
|
2939
2978
|
anon_sym_LBRACE,
|
2940
2979
|
ACTIONS(282), 1,
|
@@ -2960,7 +2999,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2960
2999
|
anon_sym_flag,
|
2961
3000
|
anon_sym_reqd,
|
2962
3001
|
sym_arg_modifier,
|
2963
|
-
[
|
3002
|
+
[1555] = 2,
|
2964
3003
|
ACTIONS(304), 5,
|
2965
3004
|
ts_builtin_sym_end,
|
2966
3005
|
sym_at_identifier,
|
@@ -2981,7 +3020,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
2981
3020
|
anon_sym_reqd,
|
2982
3021
|
sym_arg_modifier,
|
2983
3022
|
sym_string,
|
2984
|
-
[
|
3023
|
+
[1578] = 7,
|
2985
3024
|
ACTIONS(132), 1,
|
2986
3025
|
anon_sym_LBRACE,
|
2987
3026
|
ACTIONS(262), 1,
|
@@ -3007,7 +3046,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3007
3046
|
anon_sym_flag,
|
3008
3047
|
anon_sym_reqd,
|
3009
3048
|
sym_arg_modifier,
|
3010
|
-
[
|
3049
|
+
[1611] = 7,
|
3011
3050
|
ACTIONS(130), 1,
|
3012
3051
|
sym_at_identifier,
|
3013
3052
|
ACTIONS(132), 1,
|
@@ -3033,7 +3072,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3033
3072
|
anon_sym_flag,
|
3034
3073
|
anon_sym_reqd,
|
3035
3074
|
sym_arg_modifier,
|
3036
|
-
[
|
3075
|
+
[1644] = 7,
|
3037
3076
|
ACTIONS(130), 1,
|
3038
3077
|
sym_at_identifier,
|
3039
3078
|
ACTIONS(132), 1,
|
@@ -3059,7 +3098,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3059
3098
|
anon_sym_flag,
|
3060
3099
|
anon_sym_reqd,
|
3061
3100
|
sym_arg_modifier,
|
3062
|
-
[
|
3101
|
+
[1677] = 7,
|
3063
3102
|
ACTIONS(132), 1,
|
3064
3103
|
anon_sym_LBRACE,
|
3065
3104
|
ACTIONS(274), 1,
|
@@ -3068,7 +3107,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3068
3107
|
sym_string,
|
3069
3108
|
STATE(19), 1,
|
3070
3109
|
aux_sym_sub_statement_repeat1,
|
3071
|
-
STATE(
|
3110
|
+
STATE(89), 1,
|
3072
3111
|
sym_block,
|
3073
3112
|
ACTIONS(270), 2,
|
3074
3113
|
sym__comment,
|
@@ -3085,7 +3124,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3085
3124
|
anon_sym_flag,
|
3086
3125
|
anon_sym_reqd,
|
3087
3126
|
sym_arg_modifier,
|
3088
|
-
[
|
3127
|
+
[1710] = 2,
|
3089
3128
|
ACTIONS(308), 4,
|
3090
3129
|
ts_builtin_sym_end,
|
3091
3130
|
sym_at_identifier,
|
@@ -3105,7 +3144,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3105
3144
|
anon_sym_reqd,
|
3106
3145
|
sym_arg_modifier,
|
3107
3146
|
sym_string,
|
3108
|
-
[
|
3147
|
+
[1732] = 2,
|
3109
3148
|
ACTIONS(314), 2,
|
3110
3149
|
anon_sym_flag,
|
3111
3150
|
sym_arg_modifier,
|
@@ -3125,7 +3164,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3125
3164
|
anon_sym_flagarg,
|
3126
3165
|
anon_sym_reqd,
|
3127
3166
|
anon_sym_RBRACE,
|
3128
|
-
[
|
3167
|
+
[1754] = 2,
|
3129
3168
|
ACTIONS(304), 5,
|
3130
3169
|
sym_at_identifier,
|
3131
3170
|
sym__comment,
|
@@ -3145,7 +3184,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3145
3184
|
anon_sym_reqd,
|
3146
3185
|
sym_arg_modifier,
|
3147
3186
|
sym_string,
|
3148
|
-
[
|
3187
|
+
[1776] = 2,
|
3149
3188
|
ACTIONS(160), 2,
|
3150
3189
|
anon_sym_flag,
|
3151
3190
|
sym_arg_modifier,
|
@@ -3165,7 +3204,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3165
3204
|
anon_sym_flagarg,
|
3166
3205
|
anon_sym_reqd,
|
3167
3206
|
anon_sym_RBRACE,
|
3168
|
-
[
|
3207
|
+
[1798] = 2,
|
3169
3208
|
ACTIONS(222), 2,
|
3170
3209
|
anon_sym_flag,
|
3171
3210
|
sym_arg_modifier,
|
@@ -3185,7 +3224,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3185
3224
|
anon_sym_flagarg,
|
3186
3225
|
anon_sym_reqd,
|
3187
3226
|
anon_sym_RBRACE,
|
3188
|
-
[
|
3227
|
+
[1820] = 2,
|
3189
3228
|
ACTIONS(206), 2,
|
3190
3229
|
anon_sym_flag,
|
3191
3230
|
sym_arg_modifier,
|
@@ -3205,7 +3244,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3205
3244
|
anon_sym_flagarg,
|
3206
3245
|
anon_sym_reqd,
|
3207
3246
|
anon_sym_RBRACE,
|
3208
|
-
[
|
3247
|
+
[1842] = 2,
|
3209
3248
|
ACTIONS(218), 2,
|
3210
3249
|
anon_sym_flag,
|
3211
3250
|
sym_arg_modifier,
|
@@ -3225,7 +3264,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3225
3264
|
anon_sym_flagarg,
|
3226
3265
|
anon_sym_reqd,
|
3227
3266
|
anon_sym_RBRACE,
|
3228
|
-
[
|
3267
|
+
[1864] = 2,
|
3229
3268
|
ACTIONS(318), 2,
|
3230
3269
|
anon_sym_flag,
|
3231
3270
|
sym_arg_modifier,
|
@@ -3245,7 +3284,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3245
3284
|
anon_sym_flagarg,
|
3246
3285
|
anon_sym_reqd,
|
3247
3286
|
anon_sym_RBRACE,
|
3248
|
-
[
|
3287
|
+
[1886] = 2,
|
3249
3288
|
ACTIONS(322), 2,
|
3250
3289
|
anon_sym_flag,
|
3251
3290
|
sym_arg_modifier,
|
@@ -3265,7 +3304,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3265
3304
|
anon_sym_flagarg,
|
3266
3305
|
anon_sym_reqd,
|
3267
3306
|
anon_sym_RBRACE,
|
3268
|
-
[
|
3307
|
+
[1908] = 2,
|
3269
3308
|
ACTIONS(326), 2,
|
3270
3309
|
anon_sym_flag,
|
3271
3310
|
sym_arg_modifier,
|
@@ -3285,7 +3324,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3285
3324
|
anon_sym_flagarg,
|
3286
3325
|
anon_sym_reqd,
|
3287
3326
|
anon_sym_RBRACE,
|
3288
|
-
[
|
3327
|
+
[1930] = 2,
|
3289
3328
|
ACTIONS(328), 4,
|
3290
3329
|
ts_builtin_sym_end,
|
3291
3330
|
sym_at_identifier,
|
@@ -3305,7 +3344,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3305
3344
|
anon_sym_reqd,
|
3306
3345
|
sym_arg_modifier,
|
3307
3346
|
sym_string,
|
3308
|
-
[
|
3347
|
+
[1952] = 2,
|
3309
3348
|
ACTIONS(334), 2,
|
3310
3349
|
anon_sym_flag,
|
3311
3350
|
sym_arg_modifier,
|
@@ -3325,7 +3364,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3325
3364
|
anon_sym_flagarg,
|
3326
3365
|
anon_sym_reqd,
|
3327
3366
|
anon_sym_RBRACE,
|
3328
|
-
[
|
3367
|
+
[1974] = 2,
|
3329
3368
|
ACTIONS(202), 2,
|
3330
3369
|
anon_sym_flag,
|
3331
3370
|
sym_arg_modifier,
|
@@ -3345,7 +3384,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3345
3384
|
anon_sym_flagarg,
|
3346
3385
|
anon_sym_reqd,
|
3347
3386
|
anon_sym_RBRACE,
|
3348
|
-
[
|
3387
|
+
[1996] = 2,
|
3349
3388
|
ACTIONS(338), 2,
|
3350
3389
|
anon_sym_flag,
|
3351
3390
|
sym_arg_modifier,
|
@@ -3365,7 +3404,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3365
3404
|
anon_sym_flagarg,
|
3366
3405
|
anon_sym_reqd,
|
3367
3406
|
anon_sym_RBRACE,
|
3368
|
-
[
|
3407
|
+
[2018] = 2,
|
3369
3408
|
ACTIONS(342), 2,
|
3370
3409
|
anon_sym_flag,
|
3371
3410
|
sym_arg_modifier,
|
@@ -3385,7 +3424,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3385
3424
|
anon_sym_flagarg,
|
3386
3425
|
anon_sym_reqd,
|
3387
3426
|
anon_sym_RBRACE,
|
3388
|
-
[
|
3427
|
+
[2040] = 2,
|
3389
3428
|
ACTIONS(164), 2,
|
3390
3429
|
anon_sym_flag,
|
3391
3430
|
sym_arg_modifier,
|
@@ -3405,7 +3444,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3405
3444
|
anon_sym_flagarg,
|
3406
3445
|
anon_sym_reqd,
|
3407
3446
|
anon_sym_RBRACE,
|
3408
|
-
[
|
3447
|
+
[2062] = 2,
|
3409
3448
|
ACTIONS(240), 2,
|
3410
3449
|
anon_sym_flag,
|
3411
3450
|
sym_arg_modifier,
|
@@ -3425,7 +3464,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3425
3464
|
anon_sym_flagarg,
|
3426
3465
|
anon_sym_reqd,
|
3427
3466
|
anon_sym_RBRACE,
|
3428
|
-
[
|
3467
|
+
[2084] = 2,
|
3429
3468
|
ACTIONS(346), 2,
|
3430
3469
|
anon_sym_flag,
|
3431
3470
|
sym_arg_modifier,
|
@@ -3445,7 +3484,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3445
3484
|
anon_sym_flagarg,
|
3446
3485
|
anon_sym_reqd,
|
3447
3486
|
anon_sym_RBRACE,
|
3448
|
-
[
|
3487
|
+
[2106] = 2,
|
3449
3488
|
ACTIONS(350), 2,
|
3450
3489
|
anon_sym_flag,
|
3451
3490
|
sym_arg_modifier,
|
@@ -3465,7 +3504,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3465
3504
|
anon_sym_flagarg,
|
3466
3505
|
anon_sym_reqd,
|
3467
3506
|
anon_sym_RBRACE,
|
3468
|
-
[
|
3507
|
+
[2128] = 2,
|
3469
3508
|
ACTIONS(226), 2,
|
3470
3509
|
anon_sym_flag,
|
3471
3510
|
sym_arg_modifier,
|
@@ -3485,7 +3524,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3485
3524
|
anon_sym_flagarg,
|
3486
3525
|
anon_sym_reqd,
|
3487
3526
|
anon_sym_RBRACE,
|
3488
|
-
[
|
3527
|
+
[2150] = 2,
|
3489
3528
|
ACTIONS(168), 2,
|
3490
3529
|
anon_sym_flag,
|
3491
3530
|
sym_arg_modifier,
|
@@ -3505,7 +3544,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3505
3544
|
anon_sym_flagarg,
|
3506
3545
|
anon_sym_reqd,
|
3507
3546
|
anon_sym_RBRACE,
|
3508
|
-
[
|
3547
|
+
[2172] = 2,
|
3509
3548
|
ACTIONS(354), 2,
|
3510
3549
|
anon_sym_flag,
|
3511
3550
|
sym_arg_modifier,
|
@@ -3525,7 +3564,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3525
3564
|
anon_sym_flagarg,
|
3526
3565
|
anon_sym_reqd,
|
3527
3566
|
anon_sym_RBRACE,
|
3528
|
-
[
|
3567
|
+
[2194] = 2,
|
3529
3568
|
ACTIONS(128), 2,
|
3530
3569
|
anon_sym_flag,
|
3531
3570
|
sym_arg_modifier,
|
@@ -3545,7 +3584,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3545
3584
|
anon_sym_flagarg,
|
3546
3585
|
anon_sym_reqd,
|
3547
3586
|
anon_sym_RBRACE,
|
3548
|
-
[
|
3587
|
+
[2216] = 2,
|
3549
3588
|
ACTIONS(214), 2,
|
3550
3589
|
anon_sym_flag,
|
3551
3590
|
sym_arg_modifier,
|
@@ -3565,7 +3604,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3565
3604
|
anon_sym_flagarg,
|
3566
3605
|
anon_sym_reqd,
|
3567
3606
|
anon_sym_RBRACE,
|
3568
|
-
[
|
3607
|
+
[2238] = 2,
|
3569
3608
|
ACTIONS(356), 4,
|
3570
3609
|
ts_builtin_sym_end,
|
3571
3610
|
sym_at_identifier,
|
@@ -3585,7 +3624,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3585
3624
|
anon_sym_reqd,
|
3586
3625
|
sym_arg_modifier,
|
3587
3626
|
sym_string,
|
3588
|
-
[
|
3627
|
+
[2260] = 2,
|
3589
3628
|
ACTIONS(362), 2,
|
3590
3629
|
anon_sym_flag,
|
3591
3630
|
sym_arg_modifier,
|
@@ -3605,7 +3644,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3605
3644
|
anon_sym_flagarg,
|
3606
3645
|
anon_sym_reqd,
|
3607
3646
|
anon_sym_RBRACE,
|
3608
|
-
[
|
3647
|
+
[2282] = 2,
|
3609
3648
|
ACTIONS(366), 2,
|
3610
3649
|
anon_sym_flag,
|
3611
3650
|
sym_arg_modifier,
|
@@ -3625,7 +3664,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3625
3664
|
anon_sym_flagarg,
|
3626
3665
|
anon_sym_reqd,
|
3627
3666
|
anon_sym_RBRACE,
|
3628
|
-
[
|
3667
|
+
[2304] = 2,
|
3629
3668
|
ACTIONS(366), 2,
|
3630
3669
|
anon_sym_flag,
|
3631
3670
|
sym_arg_modifier,
|
@@ -3645,7 +3684,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3645
3684
|
anon_sym_flagarg,
|
3646
3685
|
anon_sym_reqd,
|
3647
3686
|
anon_sym_RBRACE,
|
3648
|
-
[
|
3687
|
+
[2326] = 2,
|
3649
3688
|
ACTIONS(370), 2,
|
3650
3689
|
anon_sym_flag,
|
3651
3690
|
sym_arg_modifier,
|
@@ -3665,7 +3704,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3665
3704
|
anon_sym_flagarg,
|
3666
3705
|
anon_sym_reqd,
|
3667
3706
|
anon_sym_RBRACE,
|
3668
|
-
[
|
3707
|
+
[2348] = 2,
|
3669
3708
|
ACTIONS(374), 2,
|
3670
3709
|
anon_sym_flag,
|
3671
3710
|
sym_arg_modifier,
|
@@ -3685,7 +3724,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3685
3724
|
anon_sym_flagarg,
|
3686
3725
|
anon_sym_reqd,
|
3687
3726
|
anon_sym_RBRACE,
|
3688
|
-
[
|
3727
|
+
[2370] = 2,
|
3689
3728
|
ACTIONS(378), 2,
|
3690
3729
|
anon_sym_flag,
|
3691
3730
|
sym_arg_modifier,
|
@@ -3705,7 +3744,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3705
3744
|
anon_sym_flagarg,
|
3706
3745
|
anon_sym_reqd,
|
3707
3746
|
anon_sym_RBRACE,
|
3708
|
-
[
|
3747
|
+
[2392] = 2,
|
3709
3748
|
ACTIONS(382), 2,
|
3710
3749
|
anon_sym_flag,
|
3711
3750
|
sym_arg_modifier,
|
@@ -3725,7 +3764,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3725
3764
|
anon_sym_flagarg,
|
3726
3765
|
anon_sym_reqd,
|
3727
3766
|
anon_sym_RBRACE,
|
3728
|
-
[
|
3767
|
+
[2414] = 2,
|
3729
3768
|
ACTIONS(386), 2,
|
3730
3769
|
anon_sym_flag,
|
3731
3770
|
sym_arg_modifier,
|
@@ -3745,7 +3784,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3745
3784
|
anon_sym_flagarg,
|
3746
3785
|
anon_sym_reqd,
|
3747
3786
|
anon_sym_RBRACE,
|
3748
|
-
[
|
3787
|
+
[2436] = 2,
|
3749
3788
|
ACTIONS(390), 2,
|
3750
3789
|
anon_sym_flag,
|
3751
3790
|
sym_arg_modifier,
|
@@ -3765,7 +3804,27 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3765
3804
|
anon_sym_flagarg,
|
3766
3805
|
anon_sym_reqd,
|
3767
3806
|
anon_sym_RBRACE,
|
3768
|
-
[
|
3807
|
+
[2458] = 2,
|
3808
|
+
ACTIONS(176), 2,
|
3809
|
+
anon_sym_flag,
|
3810
|
+
sym_arg_modifier,
|
3811
|
+
ACTIONS(174), 15,
|
3812
|
+
ts_builtin_sym_end,
|
3813
|
+
anon_sym_include,
|
3814
|
+
anon_sym_defopts,
|
3815
|
+
anon_sym_defargs,
|
3816
|
+
sym__comment,
|
3817
|
+
anon_sym_sub,
|
3818
|
+
anon_sym_cmd,
|
3819
|
+
anon_sym_desc,
|
3820
|
+
anon_sym_title,
|
3821
|
+
anon_sym_arg,
|
3822
|
+
anon_sym_varargs,
|
3823
|
+
anon_sym_opts,
|
3824
|
+
anon_sym_flagarg,
|
3825
|
+
anon_sym_reqd,
|
3826
|
+
anon_sym_RBRACE,
|
3827
|
+
[2480] = 2,
|
3769
3828
|
ACTIONS(362), 2,
|
3770
3829
|
anon_sym_flag,
|
3771
3830
|
sym_arg_modifier,
|
@@ -3785,7 +3844,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3785
3844
|
anon_sym_flagarg,
|
3786
3845
|
anon_sym_reqd,
|
3787
3846
|
anon_sym_RBRACE,
|
3788
|
-
[
|
3847
|
+
[2502] = 2,
|
3789
3848
|
ACTIONS(392), 4,
|
3790
3849
|
ts_builtin_sym_end,
|
3791
3850
|
sym_at_identifier,
|
@@ -3805,7 +3864,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3805
3864
|
anon_sym_reqd,
|
3806
3865
|
sym_arg_modifier,
|
3807
3866
|
sym_string,
|
3808
|
-
[
|
3867
|
+
[2524] = 2,
|
3809
3868
|
ACTIONS(186), 2,
|
3810
3869
|
anon_sym_flag,
|
3811
3870
|
sym_arg_modifier,
|
@@ -3825,27 +3884,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3825
3884
|
anon_sym_flagarg,
|
3826
3885
|
anon_sym_reqd,
|
3827
3886
|
anon_sym_RBRACE,
|
3828
|
-
[
|
3829
|
-
ACTIONS(176), 2,
|
3830
|
-
anon_sym_flag,
|
3831
|
-
sym_arg_modifier,
|
3832
|
-
ACTIONS(174), 15,
|
3833
|
-
ts_builtin_sym_end,
|
3834
|
-
anon_sym_include,
|
3835
|
-
anon_sym_defopts,
|
3836
|
-
anon_sym_defargs,
|
3837
|
-
sym__comment,
|
3838
|
-
anon_sym_sub,
|
3839
|
-
anon_sym_cmd,
|
3840
|
-
anon_sym_desc,
|
3841
|
-
anon_sym_title,
|
3842
|
-
anon_sym_arg,
|
3843
|
-
anon_sym_varargs,
|
3844
|
-
anon_sym_opts,
|
3845
|
-
anon_sym_flagarg,
|
3846
|
-
anon_sym_reqd,
|
3847
|
-
anon_sym_RBRACE,
|
3848
|
-
[2545] = 2,
|
3887
|
+
[2546] = 2,
|
3849
3888
|
ACTIONS(328), 4,
|
3850
3889
|
sym_at_identifier,
|
3851
3890
|
sym__comment,
|
@@ -3864,7 +3903,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3864
3903
|
anon_sym_reqd,
|
3865
3904
|
sym_arg_modifier,
|
3866
3905
|
sym_string,
|
3867
|
-
[
|
3906
|
+
[2567] = 2,
|
3868
3907
|
ACTIONS(308), 4,
|
3869
3908
|
sym_at_identifier,
|
3870
3909
|
sym__comment,
|
@@ -3883,7 +3922,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3883
3922
|
anon_sym_reqd,
|
3884
3923
|
sym_arg_modifier,
|
3885
3924
|
sym_string,
|
3886
|
-
[
|
3925
|
+
[2588] = 2,
|
3887
3926
|
ACTIONS(356), 4,
|
3888
3927
|
sym_at_identifier,
|
3889
3928
|
sym__comment,
|
@@ -3902,7 +3941,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3902
3941
|
anon_sym_reqd,
|
3903
3942
|
sym_arg_modifier,
|
3904
3943
|
sym_string,
|
3905
|
-
[
|
3944
|
+
[2609] = 2,
|
3906
3945
|
ACTIONS(392), 4,
|
3907
3946
|
sym_at_identifier,
|
3908
3947
|
sym__comment,
|
@@ -3921,7 +3960,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3921
3960
|
anon_sym_reqd,
|
3922
3961
|
sym_arg_modifier,
|
3923
3962
|
sym_string,
|
3924
|
-
[
|
3963
|
+
[2630] = 2,
|
3925
3964
|
ACTIONS(398), 1,
|
3926
3965
|
anon_sym_flag,
|
3927
3966
|
ACTIONS(396), 13,
|
@@ -3938,7 +3977,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3938
3977
|
anon_sym_flagarg,
|
3939
3978
|
anon_sym_reqd,
|
3940
3979
|
sym_arg_modifier,
|
3941
|
-
[
|
3980
|
+
[2649] = 2,
|
3942
3981
|
ACTIONS(402), 1,
|
3943
3982
|
anon_sym_flag,
|
3944
3983
|
ACTIONS(400), 13,
|
@@ -3955,7 +3994,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3955
3994
|
anon_sym_flagarg,
|
3956
3995
|
anon_sym_reqd,
|
3957
3996
|
sym_arg_modifier,
|
3958
|
-
[
|
3997
|
+
[2668] = 2,
|
3959
3998
|
ACTIONS(406), 1,
|
3960
3999
|
anon_sym_flag,
|
3961
4000
|
ACTIONS(404), 13,
|
@@ -3972,7 +4011,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3972
4011
|
anon_sym_flagarg,
|
3973
4012
|
anon_sym_reqd,
|
3974
4013
|
sym_arg_modifier,
|
3975
|
-
[
|
4014
|
+
[2687] = 2,
|
3976
4015
|
ACTIONS(330), 2,
|
3977
4016
|
anon_sym_flag,
|
3978
4017
|
sym_arg_modifier,
|
@@ -3988,7 +4027,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
3988
4027
|
anon_sym_flagarg,
|
3989
4028
|
anon_sym_reqd,
|
3990
4029
|
anon_sym_RBRACE,
|
3991
|
-
[
|
4030
|
+
[2705] = 2,
|
3992
4031
|
ACTIONS(410), 2,
|
3993
4032
|
anon_sym_flag,
|
3994
4033
|
sym_arg_modifier,
|
@@ -4004,7 +4043,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
4004
4043
|
anon_sym_flagarg,
|
4005
4044
|
anon_sym_reqd,
|
4006
4045
|
anon_sym_RBRACE,
|
4007
|
-
[
|
4046
|
+
[2723] = 2,
|
4008
4047
|
ACTIONS(414), 2,
|
4009
4048
|
anon_sym_flag,
|
4010
4049
|
sym_arg_modifier,
|
@@ -4020,7 +4059,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
4020
4059
|
anon_sym_flagarg,
|
4021
4060
|
anon_sym_reqd,
|
4022
4061
|
anon_sym_RBRACE,
|
4023
|
-
[
|
4062
|
+
[2741] = 2,
|
4024
4063
|
ACTIONS(418), 2,
|
4025
4064
|
anon_sym_flag,
|
4026
4065
|
sym_arg_modifier,
|
@@ -4036,7 +4075,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
4036
4075
|
anon_sym_flagarg,
|
4037
4076
|
anon_sym_reqd,
|
4038
4077
|
anon_sym_RBRACE,
|
4039
|
-
[
|
4078
|
+
[2759] = 2,
|
4040
4079
|
ACTIONS(422), 2,
|
4041
4080
|
anon_sym_flag,
|
4042
4081
|
sym_arg_modifier,
|
@@ -4052,7 +4091,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
4052
4091
|
anon_sym_flagarg,
|
4053
4092
|
anon_sym_reqd,
|
4054
4093
|
anon_sym_RBRACE,
|
4055
|
-
[
|
4094
|
+
[2777] = 2,
|
4056
4095
|
ACTIONS(426), 2,
|
4057
4096
|
anon_sym_flag,
|
4058
4097
|
sym_arg_modifier,
|
@@ -4068,424 +4107,447 @@ static const uint16_t ts_small_parse_table[] = {
|
|
4068
4107
|
anon_sym_flagarg,
|
4069
4108
|
anon_sym_reqd,
|
4070
4109
|
anon_sym_RBRACE,
|
4071
|
-
[
|
4072
|
-
ACTIONS(
|
4110
|
+
[2795] = 2,
|
4111
|
+
ACTIONS(430), 2,
|
4112
|
+
anon_sym_flag,
|
4113
|
+
sym_arg_modifier,
|
4114
|
+
ACTIONS(428), 11,
|
4115
|
+
anon_sym_include,
|
4116
|
+
sym__comment,
|
4117
|
+
anon_sym_sub,
|
4118
|
+
anon_sym_desc,
|
4119
|
+
anon_sym_title,
|
4120
|
+
anon_sym_arg,
|
4121
|
+
anon_sym_varargs,
|
4122
|
+
anon_sym_opts,
|
4123
|
+
anon_sym_flagarg,
|
4124
|
+
anon_sym_reqd,
|
4125
|
+
anon_sym_RBRACE,
|
4126
|
+
[2813] = 4,
|
4127
|
+
ACTIONS(136), 1,
|
4073
4128
|
anon_sym_LPAREN,
|
4074
|
-
ACTIONS(
|
4129
|
+
ACTIONS(432), 1,
|
4075
4130
|
sym_string,
|
4076
|
-
STATE(
|
4077
|
-
|
4078
|
-
STATE(
|
4131
|
+
STATE(41), 1,
|
4132
|
+
sym_sub_name_list,
|
4133
|
+
STATE(88), 2,
|
4079
4134
|
sym__strings,
|
4080
4135
|
sym__strings_list,
|
4081
|
-
[
|
4136
|
+
[2827] = 4,
|
4082
4137
|
ACTIONS(144), 1,
|
4083
4138
|
anon_sym_LPAREN,
|
4084
|
-
ACTIONS(
|
4139
|
+
ACTIONS(434), 1,
|
4085
4140
|
sym_string,
|
4086
4141
|
STATE(51), 1,
|
4087
4142
|
sym_flag_name_list,
|
4088
4143
|
STATE(92), 2,
|
4089
4144
|
sym__strings,
|
4090
4145
|
sym__strings_list,
|
4091
|
-
[
|
4092
|
-
ACTIONS(
|
4146
|
+
[2841] = 4,
|
4147
|
+
ACTIONS(144), 1,
|
4093
4148
|
anon_sym_LPAREN,
|
4094
|
-
ACTIONS(
|
4149
|
+
ACTIONS(434), 1,
|
4095
4150
|
sym_string,
|
4096
|
-
STATE(
|
4151
|
+
STATE(48), 1,
|
4097
4152
|
sym_flag_name_list,
|
4098
|
-
STATE(
|
4153
|
+
STATE(92), 2,
|
4099
4154
|
sym__strings,
|
4100
4155
|
sym__strings_list,
|
4101
|
-
[
|
4102
|
-
ACTIONS(
|
4156
|
+
[2855] = 4,
|
4157
|
+
ACTIONS(136), 1,
|
4103
4158
|
anon_sym_LPAREN,
|
4104
|
-
ACTIONS(
|
4159
|
+
ACTIONS(436), 1,
|
4105
4160
|
sym_string,
|
4106
|
-
STATE(
|
4161
|
+
STATE(42), 1,
|
4107
4162
|
sym_flag_name_list,
|
4108
|
-
STATE(
|
4163
|
+
STATE(76), 2,
|
4109
4164
|
sym__strings,
|
4110
4165
|
sym__strings_list,
|
4111
|
-
[
|
4166
|
+
[2869] = 4,
|
4112
4167
|
ACTIONS(144), 1,
|
4113
4168
|
anon_sym_LPAREN,
|
4114
|
-
ACTIONS(
|
4169
|
+
ACTIONS(434), 1,
|
4115
4170
|
sym_string,
|
4116
4171
|
STATE(46), 1,
|
4117
4172
|
sym_flag_name_list,
|
4118
4173
|
STATE(92), 2,
|
4119
4174
|
sym__strings,
|
4120
4175
|
sym__strings_list,
|
4121
|
-
[
|
4176
|
+
[2883] = 4,
|
4122
4177
|
ACTIONS(144), 1,
|
4123
4178
|
anon_sym_LPAREN,
|
4124
|
-
ACTIONS(
|
4179
|
+
ACTIONS(438), 1,
|
4125
4180
|
sym_string,
|
4126
4181
|
STATE(45), 1,
|
4127
4182
|
sym_sub_name_list,
|
4128
4183
|
STATE(93), 2,
|
4129
4184
|
sym__strings,
|
4130
4185
|
sym__strings_list,
|
4131
|
-
[
|
4132
|
-
ACTIONS(
|
4186
|
+
[2897] = 4,
|
4187
|
+
ACTIONS(144), 1,
|
4133
4188
|
anon_sym_LPAREN,
|
4134
|
-
ACTIONS(
|
4189
|
+
ACTIONS(434), 1,
|
4135
4190
|
sym_string,
|
4136
|
-
STATE(
|
4191
|
+
STATE(44), 1,
|
4137
4192
|
sym_flag_name_list,
|
4138
|
-
STATE(
|
4193
|
+
STATE(92), 2,
|
4139
4194
|
sym__strings,
|
4140
4195
|
sym__strings_list,
|
4141
|
-
[
|
4196
|
+
[2911] = 5,
|
4197
|
+
ACTIONS(440), 1,
|
4198
|
+
anon_sym_const,
|
4199
|
+
ACTIONS(442), 1,
|
4200
|
+
anon_sym_shell,
|
4201
|
+
ACTIONS(444), 1,
|
4202
|
+
anon_sym_file,
|
4203
|
+
ACTIONS(446), 1,
|
4204
|
+
anon_sym_dir,
|
4205
|
+
ACTIONS(448), 1,
|
4206
|
+
anon_sym_method,
|
4207
|
+
[2927] = 4,
|
4142
4208
|
ACTIONS(136), 1,
|
4143
4209
|
anon_sym_LPAREN,
|
4144
|
-
ACTIONS(
|
4210
|
+
ACTIONS(436), 1,
|
4145
4211
|
sym_string,
|
4146
4212
|
STATE(39), 1,
|
4147
4213
|
sym_flag_name_list,
|
4148
4214
|
STATE(76), 2,
|
4149
4215
|
sym__strings,
|
4150
4216
|
sym__strings_list,
|
4151
|
-
[
|
4217
|
+
[2941] = 4,
|
4152
4218
|
ACTIONS(136), 1,
|
4153
4219
|
anon_sym_LPAREN,
|
4154
|
-
ACTIONS(
|
4220
|
+
ACTIONS(436), 1,
|
4155
4221
|
sym_string,
|
4156
4222
|
STATE(40), 1,
|
4157
4223
|
sym_flag_name_list,
|
4158
4224
|
STATE(76), 2,
|
4159
4225
|
sym__strings,
|
4160
4226
|
sym__strings_list,
|
4161
|
-
[
|
4227
|
+
[2955] = 4,
|
4162
4228
|
ACTIONS(136), 1,
|
4163
4229
|
anon_sym_LPAREN,
|
4164
|
-
ACTIONS(
|
4230
|
+
ACTIONS(436), 1,
|
4165
4231
|
sym_string,
|
4166
|
-
STATE(
|
4167
|
-
|
4168
|
-
STATE(
|
4232
|
+
STATE(37), 1,
|
4233
|
+
sym_flag_name_list,
|
4234
|
+
STATE(76), 2,
|
4169
4235
|
sym__strings,
|
4170
4236
|
sym__strings_list,
|
4171
|
-
[
|
4172
|
-
ACTIONS(
|
4173
|
-
anon_sym_const,
|
4174
|
-
ACTIONS(438), 1,
|
4175
|
-
anon_sym_shell,
|
4176
|
-
ACTIONS(440), 1,
|
4177
|
-
anon_sym_file,
|
4178
|
-
ACTIONS(442), 1,
|
4179
|
-
anon_sym_dir,
|
4180
|
-
[2947] = 3,
|
4181
|
-
ACTIONS(444), 1,
|
4237
|
+
[2969] = 3,
|
4238
|
+
ACTIONS(450), 1,
|
4182
4239
|
sym_string,
|
4183
|
-
ACTIONS(
|
4240
|
+
ACTIONS(452), 1,
|
4184
4241
|
anon_sym_LPAREN,
|
4185
4242
|
STATE(100), 2,
|
4186
4243
|
sym__strings,
|
4187
4244
|
sym__strings_list,
|
4188
|
-
[
|
4189
|
-
|
4245
|
+
[2980] = 2,
|
4246
|
+
STATE(7), 1,
|
4247
|
+
sym_arg_type,
|
4248
|
+
ACTIONS(19), 2,
|
4249
|
+
anon_sym_arg,
|
4250
|
+
anon_sym_varargs,
|
4251
|
+
[2988] = 2,
|
4252
|
+
STATE(10), 1,
|
4253
|
+
sym_arg_type,
|
4254
|
+
ACTIONS(70), 2,
|
4255
|
+
anon_sym_arg,
|
4256
|
+
anon_sym_varargs,
|
4257
|
+
[2996] = 3,
|
4258
|
+
ACTIONS(454), 1,
|
4190
4259
|
sym_string,
|
4191
|
-
ACTIONS(
|
4260
|
+
ACTIONS(456), 1,
|
4192
4261
|
anon_sym_RPAREN,
|
4193
|
-
STATE(
|
4262
|
+
STATE(121), 1,
|
4194
4263
|
aux_sym__strings_list_repeat1,
|
4195
|
-
[
|
4196
|
-
ACTIONS(
|
4264
|
+
[3006] = 3,
|
4265
|
+
ACTIONS(454), 1,
|
4197
4266
|
sym_string,
|
4198
|
-
ACTIONS(
|
4267
|
+
ACTIONS(458), 1,
|
4199
4268
|
anon_sym_RPAREN,
|
4200
|
-
STATE(
|
4269
|
+
STATE(121), 1,
|
4201
4270
|
aux_sym__strings_list_repeat1,
|
4202
|
-
[
|
4271
|
+
[3016] = 3,
|
4203
4272
|
ACTIONS(454), 1,
|
4204
4273
|
sym_string,
|
4205
|
-
ACTIONS(
|
4274
|
+
ACTIONS(460), 1,
|
4206
4275
|
anon_sym_RPAREN,
|
4207
|
-
STATE(
|
4276
|
+
STATE(121), 1,
|
4208
4277
|
aux_sym__strings_list_repeat1,
|
4209
|
-
[
|
4210
|
-
ACTIONS(
|
4278
|
+
[3026] = 3,
|
4279
|
+
ACTIONS(462), 1,
|
4211
4280
|
sym_string,
|
4212
|
-
ACTIONS(459), 1,
|
4213
|
-
anon_sym_RPAREN,
|
4214
|
-
STATE(117), 1,
|
4215
|
-
aux_sym__strings_list_repeat1,
|
4216
|
-
[2998] = 2,
|
4217
|
-
STATE(10), 1,
|
4218
|
-
sym_arg_type,
|
4219
|
-
ACTIONS(70), 2,
|
4220
|
-
anon_sym_arg,
|
4221
|
-
anon_sym_varargs,
|
4222
|
-
[3006] = 2,
|
4223
|
-
STATE(7), 1,
|
4224
|
-
sym_arg_type,
|
4225
|
-
ACTIONS(19), 2,
|
4226
|
-
anon_sym_arg,
|
4227
|
-
anon_sym_varargs,
|
4228
|
-
[3014] = 2,
|
4229
|
-
ACTIONS(132), 1,
|
4230
|
-
anon_sym_LBRACE,
|
4231
|
-
STATE(94), 1,
|
4232
|
-
sym_block,
|
4233
|
-
[3021] = 2,
|
4234
|
-
ACTIONS(132), 1,
|
4235
|
-
anon_sym_LBRACE,
|
4236
|
-
STATE(96), 1,
|
4237
|
-
sym_block,
|
4238
|
-
[3028] = 2,
|
4239
|
-
ACTIONS(461), 1,
|
4240
|
-
anon_sym_flagarg,
|
4241
|
-
ACTIONS(463), 1,
|
4242
|
-
anon_sym_flag,
|
4243
|
-
[3035] = 2,
|
4244
4281
|
ACTIONS(465), 1,
|
4245
|
-
|
4246
|
-
STATE(
|
4282
|
+
anon_sym_RPAREN,
|
4283
|
+
STATE(121), 1,
|
4247
4284
|
aux_sym__strings_list_repeat1,
|
4248
|
-
[
|
4285
|
+
[3036] = 2,
|
4249
4286
|
ACTIONS(467), 1,
|
4250
4287
|
anon_sym_flagarg,
|
4251
4288
|
ACTIONS(469), 1,
|
4252
4289
|
anon_sym_flag,
|
4253
|
-
[
|
4290
|
+
[3043] = 2,
|
4291
|
+
ACTIONS(132), 1,
|
4292
|
+
anon_sym_LBRACE,
|
4293
|
+
STATE(96), 1,
|
4294
|
+
sym_block,
|
4295
|
+
[3050] = 2,
|
4254
4296
|
ACTIONS(471), 1,
|
4255
4297
|
anon_sym_flagarg,
|
4256
4298
|
ACTIONS(473), 1,
|
4257
4299
|
anon_sym_flag,
|
4258
|
-
[
|
4300
|
+
[3057] = 2,
|
4259
4301
|
ACTIONS(475), 1,
|
4260
4302
|
sym_string,
|
4261
|
-
STATE(
|
4303
|
+
STATE(118), 1,
|
4262
4304
|
aux_sym__strings_list_repeat1,
|
4263
|
-
[
|
4305
|
+
[3064] = 2,
|
4306
|
+
ACTIONS(132), 1,
|
4307
|
+
anon_sym_LBRACE,
|
4308
|
+
STATE(94), 1,
|
4309
|
+
sym_block,
|
4310
|
+
[3071] = 2,
|
4264
4311
|
ACTIONS(477), 1,
|
4265
4312
|
sym_string,
|
4266
|
-
STATE(
|
4313
|
+
STATE(120), 1,
|
4267
4314
|
aux_sym__strings_list_repeat1,
|
4268
|
-
[
|
4315
|
+
[3078] = 2,
|
4269
4316
|
ACTIONS(479), 1,
|
4270
4317
|
sym_string,
|
4271
|
-
|
4318
|
+
STATE(119), 1,
|
4319
|
+
aux_sym__strings_list_repeat1,
|
4320
|
+
[3085] = 2,
|
4272
4321
|
ACTIONS(481), 1,
|
4273
|
-
|
4274
|
-
[3078] = 1,
|
4322
|
+
anon_sym_flagarg,
|
4275
4323
|
ACTIONS(483), 1,
|
4276
|
-
|
4277
|
-
[
|
4324
|
+
anon_sym_flag,
|
4325
|
+
[3092] = 1,
|
4278
4326
|
ACTIONS(485), 1,
|
4279
|
-
sym_at_identifier,
|
4280
|
-
[3086] = 1,
|
4281
|
-
ACTIONS(487), 1,
|
4282
4327
|
sym_string,
|
4283
|
-
[
|
4328
|
+
[3096] = 1,
|
4329
|
+
ACTIONS(487), 1,
|
4330
|
+
sym_at_identifier,
|
4331
|
+
[3100] = 1,
|
4284
4332
|
ACTIONS(489), 1,
|
4285
|
-
|
4286
|
-
[
|
4333
|
+
sym_at_identifier,
|
4334
|
+
[3104] = 1,
|
4287
4335
|
ACTIONS(491), 1,
|
4288
4336
|
sym_string,
|
4289
|
-
[
|
4337
|
+
[3108] = 1,
|
4290
4338
|
ACTIONS(493), 1,
|
4339
|
+
sym_string,
|
4340
|
+
[3112] = 1,
|
4341
|
+
ACTIONS(495), 1,
|
4342
|
+
ts_builtin_sym_end,
|
4343
|
+
[3116] = 1,
|
4344
|
+
ACTIONS(497), 1,
|
4345
|
+
sym_string,
|
4346
|
+
[3120] = 1,
|
4347
|
+
ACTIONS(499), 1,
|
4348
|
+
sym_string,
|
4349
|
+
[3124] = 1,
|
4350
|
+
ACTIONS(501), 1,
|
4291
4351
|
sym_at_identifier,
|
4292
4352
|
};
|
4293
4353
|
|
4294
4354
|
static const uint32_t ts_small_parse_table_map[] = {
|
4295
4355
|
[SMALL_STATE(4)] = 0,
|
4296
|
-
[SMALL_STATE(5)] =
|
4297
|
-
[SMALL_STATE(6)] =
|
4298
|
-
[SMALL_STATE(7)] =
|
4299
|
-
[SMALL_STATE(8)] =
|
4300
|
-
[SMALL_STATE(9)] =
|
4301
|
-
[SMALL_STATE(10)] =
|
4302
|
-
[SMALL_STATE(11)] =
|
4303
|
-
[SMALL_STATE(12)] =
|
4304
|
-
[SMALL_STATE(13)] =
|
4305
|
-
[SMALL_STATE(14)] =
|
4306
|
-
[SMALL_STATE(15)] =
|
4307
|
-
[SMALL_STATE(16)] =
|
4308
|
-
[SMALL_STATE(17)] =
|
4309
|
-
[SMALL_STATE(18)] =
|
4310
|
-
[SMALL_STATE(19)] =
|
4311
|
-
[SMALL_STATE(20)] =
|
4312
|
-
[SMALL_STATE(21)] =
|
4313
|
-
[SMALL_STATE(22)] =
|
4314
|
-
[SMALL_STATE(23)] =
|
4315
|
-
[SMALL_STATE(24)] =
|
4316
|
-
[SMALL_STATE(25)] =
|
4317
|
-
[SMALL_STATE(26)] =
|
4318
|
-
[SMALL_STATE(27)] =
|
4319
|
-
[SMALL_STATE(28)] =
|
4320
|
-
[SMALL_STATE(29)] =
|
4321
|
-
[SMALL_STATE(30)] =
|
4322
|
-
[SMALL_STATE(31)] =
|
4323
|
-
[SMALL_STATE(32)] =
|
4324
|
-
[SMALL_STATE(33)] =
|
4325
|
-
[SMALL_STATE(34)] =
|
4326
|
-
[SMALL_STATE(35)] =
|
4327
|
-
[SMALL_STATE(36)] =
|
4328
|
-
[SMALL_STATE(37)] =
|
4329
|
-
[SMALL_STATE(38)] =
|
4330
|
-
[SMALL_STATE(39)] =
|
4331
|
-
[SMALL_STATE(40)] =
|
4332
|
-
[SMALL_STATE(41)] =
|
4333
|
-
[SMALL_STATE(42)] =
|
4334
|
-
[SMALL_STATE(43)] =
|
4335
|
-
[SMALL_STATE(44)] =
|
4336
|
-
[SMALL_STATE(45)] =
|
4337
|
-
[SMALL_STATE(46)] =
|
4338
|
-
[SMALL_STATE(47)] =
|
4339
|
-
[SMALL_STATE(48)] =
|
4340
|
-
[SMALL_STATE(49)] =
|
4341
|
-
[SMALL_STATE(50)] =
|
4342
|
-
[SMALL_STATE(51)] =
|
4343
|
-
[SMALL_STATE(52)] =
|
4344
|
-
[SMALL_STATE(53)] =
|
4345
|
-
[SMALL_STATE(54)] =
|
4346
|
-
[SMALL_STATE(55)] =
|
4347
|
-
[SMALL_STATE(56)] =
|
4348
|
-
[SMALL_STATE(57)] =
|
4349
|
-
[SMALL_STATE(58)] =
|
4350
|
-
[SMALL_STATE(59)] =
|
4351
|
-
[SMALL_STATE(60)] =
|
4352
|
-
[SMALL_STATE(61)] =
|
4353
|
-
[SMALL_STATE(62)] =
|
4354
|
-
[SMALL_STATE(63)] =
|
4355
|
-
[SMALL_STATE(64)] =
|
4356
|
-
[SMALL_STATE(65)] =
|
4357
|
-
[SMALL_STATE(66)] =
|
4358
|
-
[SMALL_STATE(67)] =
|
4359
|
-
[SMALL_STATE(68)] =
|
4360
|
-
[SMALL_STATE(69)] =
|
4361
|
-
[SMALL_STATE(70)] =
|
4362
|
-
[SMALL_STATE(71)] =
|
4363
|
-
[SMALL_STATE(72)] =
|
4364
|
-
[SMALL_STATE(73)] =
|
4365
|
-
[SMALL_STATE(74)] =
|
4366
|
-
[SMALL_STATE(75)] =
|
4367
|
-
[SMALL_STATE(76)] =
|
4368
|
-
[SMALL_STATE(77)] =
|
4369
|
-
[SMALL_STATE(78)] =
|
4370
|
-
[SMALL_STATE(79)] =
|
4371
|
-
[SMALL_STATE(80)] =
|
4372
|
-
[SMALL_STATE(81)] =
|
4373
|
-
[SMALL_STATE(82)] =
|
4374
|
-
[SMALL_STATE(83)] =
|
4375
|
-
[SMALL_STATE(84)] =
|
4376
|
-
[SMALL_STATE(85)] =
|
4377
|
-
[SMALL_STATE(86)] =
|
4378
|
-
[SMALL_STATE(87)] =
|
4379
|
-
[SMALL_STATE(88)] =
|
4380
|
-
[SMALL_STATE(89)] =
|
4381
|
-
[SMALL_STATE(90)] =
|
4382
|
-
[SMALL_STATE(91)] =
|
4383
|
-
[SMALL_STATE(92)] =
|
4384
|
-
[SMALL_STATE(93)] =
|
4385
|
-
[SMALL_STATE(94)] =
|
4386
|
-
[SMALL_STATE(95)] =
|
4387
|
-
[SMALL_STATE(96)] =
|
4388
|
-
[SMALL_STATE(97)] =
|
4389
|
-
[SMALL_STATE(98)] =
|
4390
|
-
[SMALL_STATE(99)] =
|
4391
|
-
[SMALL_STATE(100)] =
|
4392
|
-
[SMALL_STATE(101)] =
|
4393
|
-
[SMALL_STATE(102)] =
|
4394
|
-
[SMALL_STATE(103)] =
|
4395
|
-
[SMALL_STATE(104)] =
|
4396
|
-
[SMALL_STATE(105)] =
|
4397
|
-
[SMALL_STATE(106)] =
|
4398
|
-
[SMALL_STATE(107)] =
|
4399
|
-
[SMALL_STATE(108)] =
|
4400
|
-
[SMALL_STATE(109)] =
|
4401
|
-
[SMALL_STATE(110)] =
|
4402
|
-
[SMALL_STATE(111)] =
|
4403
|
-
[SMALL_STATE(112)] =
|
4404
|
-
[SMALL_STATE(113)] =
|
4405
|
-
[SMALL_STATE(114)] =
|
4406
|
-
[SMALL_STATE(115)] =
|
4407
|
-
[SMALL_STATE(116)] =
|
4408
|
-
[SMALL_STATE(117)] =
|
4409
|
-
[SMALL_STATE(118)] =
|
4410
|
-
[SMALL_STATE(119)] =
|
4411
|
-
[SMALL_STATE(120)] =
|
4412
|
-
[SMALL_STATE(121)] =
|
4413
|
-
[SMALL_STATE(122)] =
|
4414
|
-
[SMALL_STATE(123)] =
|
4415
|
-
[SMALL_STATE(124)] =
|
4416
|
-
[SMALL_STATE(125)] =
|
4417
|
-
[SMALL_STATE(126)] =
|
4418
|
-
[SMALL_STATE(127)] =
|
4419
|
-
[SMALL_STATE(128)] =
|
4420
|
-
[SMALL_STATE(129)] =
|
4421
|
-
[SMALL_STATE(130)] =
|
4422
|
-
[SMALL_STATE(131)] =
|
4423
|
-
[SMALL_STATE(132)] =
|
4424
|
-
[SMALL_STATE(133)] =
|
4425
|
-
[SMALL_STATE(134)] =
|
4426
|
-
[SMALL_STATE(135)] =
|
4427
|
-
[SMALL_STATE(136)] =
|
4356
|
+
[SMALL_STATE(5)] = 58,
|
4357
|
+
[SMALL_STATE(6)] = 119,
|
4358
|
+
[SMALL_STATE(7)] = 180,
|
4359
|
+
[SMALL_STATE(8)] = 224,
|
4360
|
+
[SMALL_STATE(9)] = 268,
|
4361
|
+
[SMALL_STATE(10)] = 311,
|
4362
|
+
[SMALL_STATE(11)] = 354,
|
4363
|
+
[SMALL_STATE(12)] = 388,
|
4364
|
+
[SMALL_STATE(13)] = 422,
|
4365
|
+
[SMALL_STATE(14)] = 456,
|
4366
|
+
[SMALL_STATE(15)] = 490,
|
4367
|
+
[SMALL_STATE(16)] = 524,
|
4368
|
+
[SMALL_STATE(17)] = 558,
|
4369
|
+
[SMALL_STATE(18)] = 592,
|
4370
|
+
[SMALL_STATE(19)] = 626,
|
4371
|
+
[SMALL_STATE(20)] = 660,
|
4372
|
+
[SMALL_STATE(21)] = 694,
|
4373
|
+
[SMALL_STATE(22)] = 728,
|
4374
|
+
[SMALL_STATE(23)] = 762,
|
4375
|
+
[SMALL_STATE(24)] = 796,
|
4376
|
+
[SMALL_STATE(25)] = 830,
|
4377
|
+
[SMALL_STATE(26)] = 864,
|
4378
|
+
[SMALL_STATE(27)] = 898,
|
4379
|
+
[SMALL_STATE(28)] = 932,
|
4380
|
+
[SMALL_STATE(29)] = 966,
|
4381
|
+
[SMALL_STATE(30)] = 1000,
|
4382
|
+
[SMALL_STATE(31)] = 1034,
|
4383
|
+
[SMALL_STATE(32)] = 1068,
|
4384
|
+
[SMALL_STATE(33)] = 1102,
|
4385
|
+
[SMALL_STATE(34)] = 1136,
|
4386
|
+
[SMALL_STATE(35)] = 1165,
|
4387
|
+
[SMALL_STATE(36)] = 1194,
|
4388
|
+
[SMALL_STATE(37)] = 1228,
|
4389
|
+
[SMALL_STATE(38)] = 1262,
|
4390
|
+
[SMALL_STATE(39)] = 1286,
|
4391
|
+
[SMALL_STATE(40)] = 1320,
|
4392
|
+
[SMALL_STATE(41)] = 1354,
|
4393
|
+
[SMALL_STATE(42)] = 1388,
|
4394
|
+
[SMALL_STATE(43)] = 1422,
|
4395
|
+
[SMALL_STATE(44)] = 1456,
|
4396
|
+
[SMALL_STATE(45)] = 1489,
|
4397
|
+
[SMALL_STATE(46)] = 1522,
|
4398
|
+
[SMALL_STATE(47)] = 1555,
|
4399
|
+
[SMALL_STATE(48)] = 1578,
|
4400
|
+
[SMALL_STATE(49)] = 1611,
|
4401
|
+
[SMALL_STATE(50)] = 1644,
|
4402
|
+
[SMALL_STATE(51)] = 1677,
|
4403
|
+
[SMALL_STATE(52)] = 1710,
|
4404
|
+
[SMALL_STATE(53)] = 1732,
|
4405
|
+
[SMALL_STATE(54)] = 1754,
|
4406
|
+
[SMALL_STATE(55)] = 1776,
|
4407
|
+
[SMALL_STATE(56)] = 1798,
|
4408
|
+
[SMALL_STATE(57)] = 1820,
|
4409
|
+
[SMALL_STATE(58)] = 1842,
|
4410
|
+
[SMALL_STATE(59)] = 1864,
|
4411
|
+
[SMALL_STATE(60)] = 1886,
|
4412
|
+
[SMALL_STATE(61)] = 1908,
|
4413
|
+
[SMALL_STATE(62)] = 1930,
|
4414
|
+
[SMALL_STATE(63)] = 1952,
|
4415
|
+
[SMALL_STATE(64)] = 1974,
|
4416
|
+
[SMALL_STATE(65)] = 1996,
|
4417
|
+
[SMALL_STATE(66)] = 2018,
|
4418
|
+
[SMALL_STATE(67)] = 2040,
|
4419
|
+
[SMALL_STATE(68)] = 2062,
|
4420
|
+
[SMALL_STATE(69)] = 2084,
|
4421
|
+
[SMALL_STATE(70)] = 2106,
|
4422
|
+
[SMALL_STATE(71)] = 2128,
|
4423
|
+
[SMALL_STATE(72)] = 2150,
|
4424
|
+
[SMALL_STATE(73)] = 2172,
|
4425
|
+
[SMALL_STATE(74)] = 2194,
|
4426
|
+
[SMALL_STATE(75)] = 2216,
|
4427
|
+
[SMALL_STATE(76)] = 2238,
|
4428
|
+
[SMALL_STATE(77)] = 2260,
|
4429
|
+
[SMALL_STATE(78)] = 2282,
|
4430
|
+
[SMALL_STATE(79)] = 2304,
|
4431
|
+
[SMALL_STATE(80)] = 2326,
|
4432
|
+
[SMALL_STATE(81)] = 2348,
|
4433
|
+
[SMALL_STATE(82)] = 2370,
|
4434
|
+
[SMALL_STATE(83)] = 2392,
|
4435
|
+
[SMALL_STATE(84)] = 2414,
|
4436
|
+
[SMALL_STATE(85)] = 2436,
|
4437
|
+
[SMALL_STATE(86)] = 2458,
|
4438
|
+
[SMALL_STATE(87)] = 2480,
|
4439
|
+
[SMALL_STATE(88)] = 2502,
|
4440
|
+
[SMALL_STATE(89)] = 2524,
|
4441
|
+
[SMALL_STATE(90)] = 2546,
|
4442
|
+
[SMALL_STATE(91)] = 2567,
|
4443
|
+
[SMALL_STATE(92)] = 2588,
|
4444
|
+
[SMALL_STATE(93)] = 2609,
|
4445
|
+
[SMALL_STATE(94)] = 2630,
|
4446
|
+
[SMALL_STATE(95)] = 2649,
|
4447
|
+
[SMALL_STATE(96)] = 2668,
|
4448
|
+
[SMALL_STATE(97)] = 2687,
|
4449
|
+
[SMALL_STATE(98)] = 2705,
|
4450
|
+
[SMALL_STATE(99)] = 2723,
|
4451
|
+
[SMALL_STATE(100)] = 2741,
|
4452
|
+
[SMALL_STATE(101)] = 2759,
|
4453
|
+
[SMALL_STATE(102)] = 2777,
|
4454
|
+
[SMALL_STATE(103)] = 2795,
|
4455
|
+
[SMALL_STATE(104)] = 2813,
|
4456
|
+
[SMALL_STATE(105)] = 2827,
|
4457
|
+
[SMALL_STATE(106)] = 2841,
|
4458
|
+
[SMALL_STATE(107)] = 2855,
|
4459
|
+
[SMALL_STATE(108)] = 2869,
|
4460
|
+
[SMALL_STATE(109)] = 2883,
|
4461
|
+
[SMALL_STATE(110)] = 2897,
|
4462
|
+
[SMALL_STATE(111)] = 2911,
|
4463
|
+
[SMALL_STATE(112)] = 2927,
|
4464
|
+
[SMALL_STATE(113)] = 2941,
|
4465
|
+
[SMALL_STATE(114)] = 2955,
|
4466
|
+
[SMALL_STATE(115)] = 2969,
|
4467
|
+
[SMALL_STATE(116)] = 2980,
|
4468
|
+
[SMALL_STATE(117)] = 2988,
|
4469
|
+
[SMALL_STATE(118)] = 2996,
|
4470
|
+
[SMALL_STATE(119)] = 3006,
|
4471
|
+
[SMALL_STATE(120)] = 3016,
|
4472
|
+
[SMALL_STATE(121)] = 3026,
|
4473
|
+
[SMALL_STATE(122)] = 3036,
|
4474
|
+
[SMALL_STATE(123)] = 3043,
|
4475
|
+
[SMALL_STATE(124)] = 3050,
|
4476
|
+
[SMALL_STATE(125)] = 3057,
|
4477
|
+
[SMALL_STATE(126)] = 3064,
|
4478
|
+
[SMALL_STATE(127)] = 3071,
|
4479
|
+
[SMALL_STATE(128)] = 3078,
|
4480
|
+
[SMALL_STATE(129)] = 3085,
|
4481
|
+
[SMALL_STATE(130)] = 3092,
|
4482
|
+
[SMALL_STATE(131)] = 3096,
|
4483
|
+
[SMALL_STATE(132)] = 3100,
|
4484
|
+
[SMALL_STATE(133)] = 3104,
|
4485
|
+
[SMALL_STATE(134)] = 3108,
|
4486
|
+
[SMALL_STATE(135)] = 3112,
|
4487
|
+
[SMALL_STATE(136)] = 3116,
|
4488
|
+
[SMALL_STATE(137)] = 3120,
|
4489
|
+
[SMALL_STATE(138)] = 3124,
|
4428
4490
|
};
|
4429
4491
|
|
4430
4492
|
static const TSParseActionEntry ts_parse_actions[] = {
|
4431
4493
|
[0] = {.entry = {.count = 0, .reusable = false}},
|
4432
4494
|
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
|
4433
4495
|
[3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0),
|
4434
|
-
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4496
|
+
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
|
4435
4497
|
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
|
4436
4498
|
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
|
4437
4499
|
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
|
4438
|
-
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4439
|
-
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4440
|
-
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4500
|
+
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
|
4501
|
+
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
|
4502
|
+
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
|
4441
4503
|
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
|
4442
|
-
[21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4443
|
-
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(
|
4444
|
-
[25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4445
|
-
[27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4446
|
-
[29] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(
|
4504
|
+
[21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
|
4505
|
+
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114),
|
4506
|
+
[25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
|
4507
|
+
[27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
|
4508
|
+
[29] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(138),
|
4447
4509
|
[32] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2),
|
4448
|
-
[35] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(
|
4449
|
-
[38] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(
|
4450
|
-
[41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(
|
4510
|
+
[35] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(109),
|
4511
|
+
[38] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(130),
|
4512
|
+
[41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(137),
|
4451
4513
|
[44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(54),
|
4452
|
-
[47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(
|
4453
|
-
[50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(
|
4514
|
+
[47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(111),
|
4515
|
+
[50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(108),
|
4454
4516
|
[53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(106),
|
4455
|
-
[56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(
|
4456
|
-
[59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(
|
4517
|
+
[56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(122),
|
4518
|
+
[59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(117),
|
4457
4519
|
[62] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2),
|
4458
4520
|
[64] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
|
4459
|
-
[66] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4460
|
-
[68] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4521
|
+
[66] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
|
4522
|
+
[68] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
|
4461
4523
|
[70] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
|
4462
|
-
[72] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4463
|
-
[74] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4524
|
+
[72] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
|
4525
|
+
[74] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
|
4464
4526
|
[76] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106),
|
4465
|
-
[78] = {.entry = {.count = 1, .reusable = false}}, SHIFT(
|
4466
|
-
[80] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4467
|
-
[82] = {.entry = {.count = 1, .reusable = true}},
|
4468
|
-
[84] = {.entry = {.count =
|
4469
|
-
[
|
4470
|
-
[
|
4471
|
-
[
|
4472
|
-
[
|
4473
|
-
[
|
4474
|
-
[
|
4475
|
-
[
|
4476
|
-
[
|
4477
|
-
[
|
4478
|
-
[
|
4479
|
-
[
|
4480
|
-
[
|
4527
|
+
[78] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117),
|
4528
|
+
[80] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
|
4529
|
+
[82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
|
4530
|
+
[84] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2),
|
4531
|
+
[86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(138),
|
4532
|
+
[89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(132),
|
4533
|
+
[92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(131),
|
4534
|
+
[95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5),
|
4535
|
+
[98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(104),
|
4536
|
+
[101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(136),
|
4537
|
+
[104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(130),
|
4538
|
+
[107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(47),
|
4539
|
+
[110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(113),
|
4540
|
+
[113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(114),
|
4541
|
+
[116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(122),
|
4542
|
+
[119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(116),
|
4481
4543
|
[122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1),
|
4482
|
-
[124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4544
|
+
[124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
|
4483
4545
|
[126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_statement, 2),
|
4484
4546
|
[128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arg_statement, 2),
|
4485
4547
|
[130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
|
4486
|
-
[132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4548
|
+
[132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
|
4487
4549
|
[134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52),
|
4488
|
-
[136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4550
|
+
[136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
|
4489
4551
|
[138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_statement, 1),
|
4490
4552
|
[140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arg_statement, 1),
|
4491
4553
|
[142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
|
@@ -4572,8 +4634,8 @@ static const TSParseActionEntry ts_parse_actions[] = {
|
|
4572
4634
|
[306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arg_type, 1),
|
4573
4635
|
[308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_name_list, 1),
|
4574
4636
|
[310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arg_name_list, 1),
|
4575
|
-
[312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(
|
4576
|
-
[314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(
|
4637
|
+
[312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flagarg_statement, 5, .production_id = 4),
|
4638
|
+
[314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flagarg_statement, 5, .production_id = 4),
|
4577
4639
|
[316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_statement, 6, .production_id = 9),
|
4578
4640
|
[318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_statement, 6, .production_id = 9),
|
4579
4641
|
[320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flagarg_statement, 6, .production_id = 9),
|
@@ -4604,14 +4666,14 @@ static const TSParseActionEntry ts_parse_actions[] = {
|
|
4604
4666
|
[370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 2),
|
4605
4667
|
[372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_statement, 5),
|
4606
4668
|
[374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arg_statement, 5),
|
4607
|
-
[376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(
|
4608
|
-
[378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(
|
4609
|
-
[380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(
|
4610
|
-
[382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(
|
4611
|
-
[384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(
|
4612
|
-
[386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(
|
4613
|
-
[388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(
|
4614
|
-
[390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(
|
4669
|
+
[376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_statement, 5, .production_id = 4),
|
4670
|
+
[378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_statement, 5, .production_id = 4),
|
4671
|
+
[380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_statement, 5, .production_id = 4),
|
4672
|
+
[382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_statement, 5, .production_id = 4),
|
4673
|
+
[384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
|
4674
|
+
[386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
|
4675
|
+
[388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_desc_statement, 2),
|
4676
|
+
[390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_desc_statement, 2),
|
4615
4677
|
[392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_name_list, 1),
|
4616
4678
|
[394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_name_list, 1),
|
4617
4679
|
[396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defopts_statement, 3),
|
@@ -4628,41 +4690,45 @@ static const TSParseActionEntry ts_parse_actions[] = {
|
|
4628
4690
|
[418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_opts_const_statement, 3),
|
4629
4691
|
[420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opts_shell_statement, 3),
|
4630
4692
|
[422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_opts_shell_statement, 3),
|
4631
|
-
[424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(
|
4632
|
-
[426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(
|
4633
|
-
[428] = {.entry = {.count = 1, .reusable = true}},
|
4634
|
-
[430] = {.entry = {.count = 1, .reusable =
|
4635
|
-
[432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4636
|
-
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4637
|
-
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4638
|
-
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4639
|
-
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4640
|
-
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4641
|
-
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4642
|
-
[446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4643
|
-
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4644
|
-
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4645
|
-
[452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4646
|
-
[454] = {.entry = {.count =
|
4647
|
-
[
|
4648
|
-
[
|
4649
|
-
[
|
4650
|
-
[
|
4651
|
-
[465] = {.entry = {.count = 1, .reusable = true}},
|
4693
|
+
[424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opts_method_statement, 3),
|
4694
|
+
[426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_opts_method_statement, 3),
|
4695
|
+
[428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_title_statement, 2),
|
4696
|
+
[430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_title_statement, 2),
|
4697
|
+
[432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
|
4698
|
+
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
|
4699
|
+
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
|
4700
|
+
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
|
4701
|
+
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
|
4702
|
+
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
|
4703
|
+
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
|
4704
|
+
[446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
|
4705
|
+
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
|
4706
|
+
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
|
4707
|
+
[452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
|
4708
|
+
[454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
|
4709
|
+
[456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
|
4710
|
+
[458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
|
4711
|
+
[460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
|
4712
|
+
[462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__strings_list_repeat1, 2), SHIFT_REPEAT(121),
|
4713
|
+
[465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__strings_list_repeat1, 2),
|
4652
4714
|
[467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_modifier, 1),
|
4653
4715
|
[469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_modifier, 1),
|
4654
|
-
[471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4655
|
-
[473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(
|
4656
|
-
[475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4657
|
-
[477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4658
|
-
[479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4659
|
-
[481] = {.entry = {.count = 1, .reusable = true}},
|
4660
|
-
[483] = {.entry = {.count = 1, .reusable =
|
4661
|
-
[485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4662
|
-
[487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4663
|
-
[489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4716
|
+
[471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
|
4717
|
+
[473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110),
|
4718
|
+
[475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
|
4719
|
+
[477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
|
4720
|
+
[479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
|
4721
|
+
[481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
|
4722
|
+
[483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107),
|
4723
|
+
[485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
|
4724
|
+
[487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
|
4725
|
+
[489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
|
4664
4726
|
[491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
|
4665
|
-
[493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(
|
4727
|
+
[493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
|
4728
|
+
[495] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
|
4729
|
+
[497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
|
4730
|
+
[499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
|
4731
|
+
[501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
|
4666
4732
|
};
|
4667
4733
|
|
4668
4734
|
#ifdef __cplusplus
|