tree-sitter-muttrc 0.0.5 → 0.1.0
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.
- package/LICENSE +21 -0
- package/README.md +12 -0
- package/binding.gyp +17 -3
- package/bindings/node/binding.cc +1 -2
- package/bindings/node/binding_test.js +11 -0
- package/bindings/node/index.d.ts +36 -4
- package/bindings/node/index.js +34 -4
- package/grammar.js +186 -181
- package/package.json +26 -21
- package/queries/highlights.scm +61 -0
- package/queries/injections.scm +30 -0
- package/src/grammar.json +353 -585
- package/src/node-types.json +55 -78
- package/src/parser.c +20398 -13114
- package/src/tree_sitter/alloc.h +4 -4
- package/src/tree_sitter/array.h +120 -74
- package/src/tree_sitter/parser.h +68 -12
- package/tree-sitter.json +42 -0
package/src/grammar.json
CHANGED
|
@@ -1,31 +1,57 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json",
|
|
2
3
|
"name": "muttrc",
|
|
3
4
|
"rules": {
|
|
4
5
|
"file": {
|
|
5
|
-
"type": "
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
"type": "CHOICE",
|
|
7
|
+
"members": [
|
|
8
|
+
{
|
|
9
|
+
"type": "SYMBOL",
|
|
10
|
+
"name": "_statements"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"type": "BLANK"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"_statements": {
|
|
18
|
+
"type": "SEQ",
|
|
19
|
+
"members": [
|
|
20
|
+
{
|
|
21
|
+
"type": "REPEAT",
|
|
22
|
+
"content": {
|
|
23
|
+
"type": "SEQ",
|
|
11
24
|
"members": [
|
|
12
25
|
{
|
|
13
26
|
"type": "SYMBOL",
|
|
14
|
-
"name": "
|
|
27
|
+
"name": "_statement"
|
|
15
28
|
},
|
|
16
29
|
{
|
|
17
|
-
"type": "
|
|
30
|
+
"type": "SYMBOL",
|
|
31
|
+
"name": "_terminator"
|
|
18
32
|
}
|
|
19
33
|
]
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"type": "SYMBOL",
|
|
23
|
-
"name": "_end"
|
|
24
34
|
}
|
|
25
|
-
|
|
26
|
-
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "SYMBOL",
|
|
38
|
+
"name": "_statement"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"type": "CHOICE",
|
|
42
|
+
"members": [
|
|
43
|
+
{
|
|
44
|
+
"type": "SYMBOL",
|
|
45
|
+
"name": "_terminator"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "BLANK"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
]
|
|
27
53
|
},
|
|
28
|
-
"
|
|
54
|
+
"_statement": {
|
|
29
55
|
"type": "CHOICE",
|
|
30
56
|
"members": [
|
|
31
57
|
{
|
|
@@ -376,13 +402,20 @@
|
|
|
376
402
|
},
|
|
377
403
|
{
|
|
378
404
|
"type": "SYMBOL",
|
|
379
|
-
"name": "
|
|
405
|
+
"name": "_statement"
|
|
380
406
|
}
|
|
381
407
|
]
|
|
382
408
|
},
|
|
383
409
|
"group_name": {
|
|
384
|
-
"type": "
|
|
385
|
-
"
|
|
410
|
+
"type": "PATTERN",
|
|
411
|
+
"value": "[^-]\\S*"
|
|
412
|
+
},
|
|
413
|
+
"_group_names": {
|
|
414
|
+
"type": "REPEAT1",
|
|
415
|
+
"content": {
|
|
416
|
+
"type": "SYMBOL",
|
|
417
|
+
"name": "group_name"
|
|
418
|
+
}
|
|
386
419
|
},
|
|
387
420
|
"_group": {
|
|
388
421
|
"type": "SEQ",
|
|
@@ -398,7 +431,7 @@
|
|
|
398
431
|
},
|
|
399
432
|
{
|
|
400
433
|
"type": "SYMBOL",
|
|
401
|
-
"name": "
|
|
434
|
+
"name": "_group_names"
|
|
402
435
|
}
|
|
403
436
|
]
|
|
404
437
|
},
|
|
@@ -415,8 +448,11 @@
|
|
|
415
448
|
"type": "SEQ",
|
|
416
449
|
"members": [
|
|
417
450
|
{
|
|
418
|
-
"type": "
|
|
419
|
-
"
|
|
451
|
+
"type": "IMMEDIATE_TOKEN",
|
|
452
|
+
"content": {
|
|
453
|
+
"type": "STRING",
|
|
454
|
+
"value": ","
|
|
455
|
+
}
|
|
420
456
|
},
|
|
421
457
|
{
|
|
422
458
|
"type": "SYMBOL",
|
|
@@ -548,29 +584,11 @@
|
|
|
548
584
|
}
|
|
549
585
|
},
|
|
550
586
|
"_regexes": {
|
|
551
|
-
"type": "
|
|
552
|
-
"
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
"type": "REPEAT",
|
|
559
|
-
"content": {
|
|
560
|
-
"type": "SEQ",
|
|
561
|
-
"members": [
|
|
562
|
-
{
|
|
563
|
-
"type": "STRING",
|
|
564
|
-
"value": " "
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"type": "SYMBOL",
|
|
568
|
-
"name": "_regex"
|
|
569
|
-
}
|
|
570
|
-
]
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
]
|
|
587
|
+
"type": "REPEAT1",
|
|
588
|
+
"content": {
|
|
589
|
+
"type": "SYMBOL",
|
|
590
|
+
"name": "_regex"
|
|
591
|
+
}
|
|
574
592
|
},
|
|
575
593
|
"alternates_directive": {
|
|
576
594
|
"type": "SEQ",
|
|
@@ -726,54 +744,18 @@
|
|
|
726
744
|
]
|
|
727
745
|
},
|
|
728
746
|
"_mime_types": {
|
|
729
|
-
"type": "
|
|
730
|
-
"
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
},
|
|
735
|
-
{
|
|
736
|
-
"type": "REPEAT",
|
|
737
|
-
"content": {
|
|
738
|
-
"type": "SEQ",
|
|
739
|
-
"members": [
|
|
740
|
-
{
|
|
741
|
-
"type": "STRING",
|
|
742
|
-
"value": " "
|
|
743
|
-
},
|
|
744
|
-
{
|
|
745
|
-
"type": "SYMBOL",
|
|
746
|
-
"name": "mime_type"
|
|
747
|
-
}
|
|
748
|
-
]
|
|
749
|
-
}
|
|
750
|
-
}
|
|
751
|
-
]
|
|
747
|
+
"type": "REPEAT1",
|
|
748
|
+
"content": {
|
|
749
|
+
"type": "SYMBOL",
|
|
750
|
+
"name": "mime_type"
|
|
751
|
+
}
|
|
752
752
|
},
|
|
753
753
|
"_mimes": {
|
|
754
|
-
"type": "
|
|
755
|
-
"
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
},
|
|
760
|
-
{
|
|
761
|
-
"type": "REPEAT",
|
|
762
|
-
"content": {
|
|
763
|
-
"type": "SEQ",
|
|
764
|
-
"members": [
|
|
765
|
-
{
|
|
766
|
-
"type": "STRING",
|
|
767
|
-
"value": " "
|
|
768
|
-
},
|
|
769
|
-
{
|
|
770
|
-
"type": "SYMBOL",
|
|
771
|
-
"name": "mime"
|
|
772
|
-
}
|
|
773
|
-
]
|
|
774
|
-
}
|
|
775
|
-
}
|
|
776
|
-
]
|
|
754
|
+
"type": "REPEAT1",
|
|
755
|
+
"content": {
|
|
756
|
+
"type": "SYMBOL",
|
|
757
|
+
"name": "mime"
|
|
758
|
+
}
|
|
777
759
|
},
|
|
778
760
|
"disposition": {
|
|
779
761
|
"type": "SYMBOL",
|
|
@@ -1008,8 +990,11 @@
|
|
|
1008
990
|
"type": "SEQ",
|
|
1009
991
|
"members": [
|
|
1010
992
|
{
|
|
1011
|
-
"type": "
|
|
1012
|
-
"
|
|
993
|
+
"type": "IMMEDIATE_TOKEN",
|
|
994
|
+
"content": {
|
|
995
|
+
"type": "STRING",
|
|
996
|
+
"value": ","
|
|
997
|
+
}
|
|
1013
998
|
},
|
|
1014
999
|
{
|
|
1015
1000
|
"type": "SYMBOL",
|
|
@@ -1025,29 +1010,11 @@
|
|
|
1025
1010
|
"value": "[a-z-]+"
|
|
1026
1011
|
},
|
|
1027
1012
|
"_functions": {
|
|
1028
|
-
"type": "
|
|
1029
|
-
"
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
"type": "REPEAT",
|
|
1036
|
-
"content": {
|
|
1037
|
-
"type": "SEQ",
|
|
1038
|
-
"members": [
|
|
1039
|
-
{
|
|
1040
|
-
"type": "STRING",
|
|
1041
|
-
"value": " "
|
|
1042
|
-
},
|
|
1043
|
-
{
|
|
1044
|
-
"type": "SYMBOL",
|
|
1045
|
-
"name": "function"
|
|
1046
|
-
}
|
|
1047
|
-
]
|
|
1048
|
-
}
|
|
1049
|
-
}
|
|
1050
|
-
]
|
|
1013
|
+
"type": "REPEAT1",
|
|
1014
|
+
"content": {
|
|
1015
|
+
"type": "SYMBOL",
|
|
1016
|
+
"name": "function"
|
|
1017
|
+
}
|
|
1051
1018
|
},
|
|
1052
1019
|
"bind_directive": {
|
|
1053
1020
|
"type": "SEQ",
|
|
@@ -1393,7 +1360,7 @@
|
|
|
1393
1360
|
},
|
|
1394
1361
|
{
|
|
1395
1362
|
"type": "PATTERN",
|
|
1396
|
-
"value": "color\\d+"
|
|
1363
|
+
"value": "(bright)?color\\d+"
|
|
1397
1364
|
}
|
|
1398
1365
|
]
|
|
1399
1366
|
},
|
|
@@ -1423,29 +1390,11 @@
|
|
|
1423
1390
|
]
|
|
1424
1391
|
},
|
|
1425
1392
|
"_attributes": {
|
|
1426
|
-
"type": "
|
|
1427
|
-
"
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
},
|
|
1432
|
-
{
|
|
1433
|
-
"type": "REPEAT",
|
|
1434
|
-
"content": {
|
|
1435
|
-
"type": "SEQ",
|
|
1436
|
-
"members": [
|
|
1437
|
-
{
|
|
1438
|
-
"type": "STRING",
|
|
1439
|
-
"value": " "
|
|
1440
|
-
},
|
|
1441
|
-
{
|
|
1442
|
-
"type": "SYMBOL",
|
|
1443
|
-
"name": "attribute"
|
|
1444
|
-
}
|
|
1445
|
-
]
|
|
1446
|
-
}
|
|
1447
|
-
}
|
|
1448
|
-
]
|
|
1393
|
+
"type": "REPEAT1",
|
|
1394
|
+
"content": {
|
|
1395
|
+
"type": "SYMBOL",
|
|
1396
|
+
"name": "attribute"
|
|
1397
|
+
}
|
|
1449
1398
|
},
|
|
1450
1399
|
"foreground": {
|
|
1451
1400
|
"type": "SYMBOL",
|
|
@@ -1766,7 +1715,7 @@
|
|
|
1766
1715
|
},
|
|
1767
1716
|
{
|
|
1768
1717
|
"type": "SYMBOL",
|
|
1769
|
-
"name": "
|
|
1718
|
+
"name": "_statement"
|
|
1770
1719
|
}
|
|
1771
1720
|
]
|
|
1772
1721
|
},
|
|
@@ -1885,29 +1834,11 @@
|
|
|
1885
1834
|
"name": "_string"
|
|
1886
1835
|
},
|
|
1887
1836
|
"_headers": {
|
|
1888
|
-
"type": "
|
|
1889
|
-
"
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
},
|
|
1894
|
-
{
|
|
1895
|
-
"type": "REPEAT",
|
|
1896
|
-
"content": {
|
|
1897
|
-
"type": "SEQ",
|
|
1898
|
-
"members": [
|
|
1899
|
-
{
|
|
1900
|
-
"type": "STRING",
|
|
1901
|
-
"value": " "
|
|
1902
|
-
},
|
|
1903
|
-
{
|
|
1904
|
-
"type": "SYMBOL",
|
|
1905
|
-
"name": "header"
|
|
1906
|
-
}
|
|
1907
|
-
]
|
|
1908
|
-
}
|
|
1909
|
-
}
|
|
1910
|
-
]
|
|
1837
|
+
"type": "REPEAT1",
|
|
1838
|
+
"content": {
|
|
1839
|
+
"type": "SYMBOL",
|
|
1840
|
+
"name": "header"
|
|
1841
|
+
}
|
|
1911
1842
|
},
|
|
1912
1843
|
"hdr_order_directive": {
|
|
1913
1844
|
"type": "SEQ",
|
|
@@ -1976,7 +1907,7 @@
|
|
|
1976
1907
|
},
|
|
1977
1908
|
{
|
|
1978
1909
|
"type": "SYMBOL",
|
|
1979
|
-
"name": "
|
|
1910
|
+
"name": "_statement"
|
|
1980
1911
|
}
|
|
1981
1912
|
]
|
|
1982
1913
|
},
|
|
@@ -1998,7 +1929,7 @@
|
|
|
1998
1929
|
},
|
|
1999
1930
|
{
|
|
2000
1931
|
"type": "SYMBOL",
|
|
2001
|
-
"name": "
|
|
1932
|
+
"name": "_statement"
|
|
2002
1933
|
}
|
|
2003
1934
|
]
|
|
2004
1935
|
},
|
|
@@ -2017,29 +1948,11 @@
|
|
|
2017
1948
|
]
|
|
2018
1949
|
},
|
|
2019
1950
|
"_strings": {
|
|
2020
|
-
"type": "
|
|
2021
|
-
"
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
},
|
|
2026
|
-
{
|
|
2027
|
-
"type": "REPEAT",
|
|
2028
|
-
"content": {
|
|
2029
|
-
"type": "SEQ",
|
|
2030
|
-
"members": [
|
|
2031
|
-
{
|
|
2032
|
-
"type": "STRING",
|
|
2033
|
-
"value": " "
|
|
2034
|
-
},
|
|
2035
|
-
{
|
|
2036
|
-
"type": "SYMBOL",
|
|
2037
|
-
"name": "_string"
|
|
2038
|
-
}
|
|
2039
|
-
]
|
|
2040
|
-
}
|
|
2041
|
-
}
|
|
2042
|
-
]
|
|
1951
|
+
"type": "REPEAT1",
|
|
1952
|
+
"content": {
|
|
1953
|
+
"type": "SYMBOL",
|
|
1954
|
+
"name": "_string"
|
|
1955
|
+
}
|
|
2043
1956
|
},
|
|
2044
1957
|
"ignore_directive": {
|
|
2045
1958
|
"type": "SEQ",
|
|
@@ -2219,6 +2132,18 @@
|
|
|
2219
2132
|
{
|
|
2220
2133
|
"type": "SYMBOL",
|
|
2221
2134
|
"name": "sequence"
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
"type": "CHOICE",
|
|
2138
|
+
"members": [
|
|
2139
|
+
{
|
|
2140
|
+
"type": "SYMBOL",
|
|
2141
|
+
"name": "description"
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"type": "BLANK"
|
|
2145
|
+
}
|
|
2146
|
+
]
|
|
2222
2147
|
}
|
|
2223
2148
|
]
|
|
2224
2149
|
},
|
|
@@ -2258,45 +2183,27 @@
|
|
|
2258
2183
|
"name": "_string"
|
|
2259
2184
|
},
|
|
2260
2185
|
"_mailboxes": {
|
|
2186
|
+
"type": "REPEAT1",
|
|
2187
|
+
"content": {
|
|
2188
|
+
"type": "SYMBOL",
|
|
2189
|
+
"name": "mailbox"
|
|
2190
|
+
}
|
|
2191
|
+
},
|
|
2192
|
+
"description": {
|
|
2193
|
+
"type": "SYMBOL",
|
|
2194
|
+
"name": "_string"
|
|
2195
|
+
},
|
|
2196
|
+
"mailboxes_directive": {
|
|
2261
2197
|
"type": "SEQ",
|
|
2262
2198
|
"members": [
|
|
2263
2199
|
{
|
|
2264
|
-
"type": "
|
|
2265
|
-
"
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
"
|
|
2270
|
-
|
|
2271
|
-
"members": [
|
|
2272
|
-
{
|
|
2273
|
-
"type": "STRING",
|
|
2274
|
-
"value": " "
|
|
2275
|
-
},
|
|
2276
|
-
{
|
|
2277
|
-
"type": "SYMBOL",
|
|
2278
|
-
"name": "mailbox"
|
|
2279
|
-
}
|
|
2280
|
-
]
|
|
2281
|
-
}
|
|
2282
|
-
}
|
|
2283
|
-
]
|
|
2284
|
-
},
|
|
2285
|
-
"description": {
|
|
2286
|
-
"type": "SYMBOL",
|
|
2287
|
-
"name": "_string"
|
|
2288
|
-
},
|
|
2289
|
-
"mailboxes_directive": {
|
|
2290
|
-
"type": "SEQ",
|
|
2291
|
-
"members": [
|
|
2292
|
-
{
|
|
2293
|
-
"type": "ALIAS",
|
|
2294
|
-
"content": {
|
|
2295
|
-
"type": "STRING",
|
|
2296
|
-
"value": "mailboxes"
|
|
2297
|
-
},
|
|
2298
|
-
"named": true,
|
|
2299
|
-
"value": "command"
|
|
2200
|
+
"type": "ALIAS",
|
|
2201
|
+
"content": {
|
|
2202
|
+
"type": "STRING",
|
|
2203
|
+
"value": "mailboxes"
|
|
2204
|
+
},
|
|
2205
|
+
"named": true,
|
|
2206
|
+
"value": "command"
|
|
2300
2207
|
},
|
|
2301
2208
|
{
|
|
2302
2209
|
"type": "SYMBOL",
|
|
@@ -2317,47 +2224,20 @@
|
|
|
2317
2224
|
"value": "command"
|
|
2318
2225
|
},
|
|
2319
2226
|
{
|
|
2320
|
-
"type": "
|
|
2321
|
-
"
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
"name": "mailbox"
|
|
2332
|
-
}
|
|
2333
|
-
]
|
|
2334
|
-
},
|
|
2335
|
-
{
|
|
2336
|
-
"type": "REPEAT",
|
|
2337
|
-
"content": {
|
|
2338
|
-
"type": "SEQ",
|
|
2339
|
-
"members": [
|
|
2340
|
-
{
|
|
2341
|
-
"type": "STRING",
|
|
2342
|
-
"value": " "
|
|
2343
|
-
},
|
|
2344
|
-
{
|
|
2345
|
-
"type": "SEQ",
|
|
2346
|
-
"members": [
|
|
2347
|
-
{
|
|
2348
|
-
"type": "SYMBOL",
|
|
2349
|
-
"name": "description"
|
|
2350
|
-
},
|
|
2351
|
-
{
|
|
2352
|
-
"type": "SYMBOL",
|
|
2353
|
-
"name": "mailbox"
|
|
2354
|
-
}
|
|
2355
|
-
]
|
|
2356
|
-
}
|
|
2357
|
-
]
|
|
2227
|
+
"type": "REPEAT1",
|
|
2228
|
+
"content": {
|
|
2229
|
+
"type": "SEQ",
|
|
2230
|
+
"members": [
|
|
2231
|
+
{
|
|
2232
|
+
"type": "SYMBOL",
|
|
2233
|
+
"name": "description"
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"type": "SYMBOL",
|
|
2237
|
+
"name": "mailbox"
|
|
2358
2238
|
}
|
|
2359
|
-
|
|
2360
|
-
|
|
2239
|
+
]
|
|
2240
|
+
}
|
|
2361
2241
|
}
|
|
2362
2242
|
]
|
|
2363
2243
|
},
|
|
@@ -2393,29 +2273,11 @@
|
|
|
2393
2273
|
"name": "_string"
|
|
2394
2274
|
},
|
|
2395
2275
|
"_header_fields": {
|
|
2396
|
-
"type": "
|
|
2397
|
-
"
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
},
|
|
2402
|
-
{
|
|
2403
|
-
"type": "REPEAT",
|
|
2404
|
-
"content": {
|
|
2405
|
-
"type": "SEQ",
|
|
2406
|
-
"members": [
|
|
2407
|
-
{
|
|
2408
|
-
"type": "STRING",
|
|
2409
|
-
"value": " "
|
|
2410
|
-
},
|
|
2411
|
-
{
|
|
2412
|
-
"type": "SYMBOL",
|
|
2413
|
-
"name": "header_field"
|
|
2414
|
-
}
|
|
2415
|
-
]
|
|
2416
|
-
}
|
|
2417
|
-
}
|
|
2418
|
-
]
|
|
2276
|
+
"type": "REPEAT1",
|
|
2277
|
+
"content": {
|
|
2278
|
+
"type": "SYMBOL",
|
|
2279
|
+
"name": "header_field"
|
|
2280
|
+
}
|
|
2419
2281
|
},
|
|
2420
2282
|
"mailto_allow_directive": {
|
|
2421
2283
|
"type": "SEQ",
|
|
@@ -2567,7 +2429,7 @@
|
|
|
2567
2429
|
},
|
|
2568
2430
|
{
|
|
2569
2431
|
"type": "SYMBOL",
|
|
2570
|
-
"name": "
|
|
2432
|
+
"name": "_statement"
|
|
2571
2433
|
}
|
|
2572
2434
|
]
|
|
2573
2435
|
},
|
|
@@ -2727,9 +2589,97 @@
|
|
|
2727
2589
|
}
|
|
2728
2590
|
]
|
|
2729
2591
|
},
|
|
2730
|
-
"
|
|
2731
|
-
"type": "
|
|
2732
|
-
"
|
|
2592
|
+
"shell_statement": {
|
|
2593
|
+
"type": "CHOICE",
|
|
2594
|
+
"members": [
|
|
2595
|
+
{
|
|
2596
|
+
"type": "SEQ",
|
|
2597
|
+
"members": [
|
|
2598
|
+
{
|
|
2599
|
+
"type": "STRING",
|
|
2600
|
+
"value": "'"
|
|
2601
|
+
},
|
|
2602
|
+
{
|
|
2603
|
+
"type": "ALIAS",
|
|
2604
|
+
"content": {
|
|
2605
|
+
"type": "FIELD",
|
|
2606
|
+
"name": "content",
|
|
2607
|
+
"content": {
|
|
2608
|
+
"type": "PATTERN",
|
|
2609
|
+
"value": "([^']|\\\\')*"
|
|
2610
|
+
}
|
|
2611
|
+
},
|
|
2612
|
+
"named": true,
|
|
2613
|
+
"value": "shell"
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"type": "STRING",
|
|
2617
|
+
"value": "'"
|
|
2618
|
+
}
|
|
2619
|
+
]
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
"type": "SEQ",
|
|
2623
|
+
"members": [
|
|
2624
|
+
{
|
|
2625
|
+
"type": "STRING",
|
|
2626
|
+
"value": "\""
|
|
2627
|
+
},
|
|
2628
|
+
{
|
|
2629
|
+
"type": "ALIAS",
|
|
2630
|
+
"content": {
|
|
2631
|
+
"type": "FIELD",
|
|
2632
|
+
"name": "content",
|
|
2633
|
+
"content": {
|
|
2634
|
+
"type": "PATTERN",
|
|
2635
|
+
"value": "([^\"]|\\\\\")*"
|
|
2636
|
+
}
|
|
2637
|
+
},
|
|
2638
|
+
"named": true,
|
|
2639
|
+
"value": "shell"
|
|
2640
|
+
},
|
|
2641
|
+
{
|
|
2642
|
+
"type": "STRING",
|
|
2643
|
+
"value": "\""
|
|
2644
|
+
}
|
|
2645
|
+
]
|
|
2646
|
+
},
|
|
2647
|
+
{
|
|
2648
|
+
"type": "SEQ",
|
|
2649
|
+
"members": [
|
|
2650
|
+
{
|
|
2651
|
+
"type": "STRING",
|
|
2652
|
+
"value": "`"
|
|
2653
|
+
},
|
|
2654
|
+
{
|
|
2655
|
+
"type": "ALIAS",
|
|
2656
|
+
"content": {
|
|
2657
|
+
"type": "FIELD",
|
|
2658
|
+
"name": "content",
|
|
2659
|
+
"content": {
|
|
2660
|
+
"type": "PATTERN",
|
|
2661
|
+
"value": "([^`]|\\\\`)*"
|
|
2662
|
+
}
|
|
2663
|
+
},
|
|
2664
|
+
"named": true,
|
|
2665
|
+
"value": "shell"
|
|
2666
|
+
},
|
|
2667
|
+
{
|
|
2668
|
+
"type": "STRING",
|
|
2669
|
+
"value": "`"
|
|
2670
|
+
}
|
|
2671
|
+
]
|
|
2672
|
+
},
|
|
2673
|
+
{
|
|
2674
|
+
"type": "ALIAS",
|
|
2675
|
+
"content": {
|
|
2676
|
+
"type": "SYMBOL",
|
|
2677
|
+
"name": "_word"
|
|
2678
|
+
},
|
|
2679
|
+
"named": true,
|
|
2680
|
+
"value": "shell"
|
|
2681
|
+
}
|
|
2682
|
+
]
|
|
2733
2683
|
},
|
|
2734
2684
|
"open_hook_directive": {
|
|
2735
2685
|
"type": "SEQ",
|
|
@@ -2749,7 +2699,7 @@
|
|
|
2749
2699
|
},
|
|
2750
2700
|
{
|
|
2751
2701
|
"type": "SYMBOL",
|
|
2752
|
-
"name": "
|
|
2702
|
+
"name": "shell_statement"
|
|
2753
2703
|
}
|
|
2754
2704
|
]
|
|
2755
2705
|
},
|
|
@@ -2771,7 +2721,7 @@
|
|
|
2771
2721
|
},
|
|
2772
2722
|
{
|
|
2773
2723
|
"type": "SYMBOL",
|
|
2774
|
-
"name": "
|
|
2724
|
+
"name": "shell_statement"
|
|
2775
2725
|
}
|
|
2776
2726
|
]
|
|
2777
2727
|
},
|
|
@@ -2793,7 +2743,7 @@
|
|
|
2793
2743
|
},
|
|
2794
2744
|
{
|
|
2795
2745
|
"type": "SYMBOL",
|
|
2796
|
-
"name": "
|
|
2746
|
+
"name": "shell_statement"
|
|
2797
2747
|
}
|
|
2798
2748
|
]
|
|
2799
2749
|
},
|
|
@@ -2833,7 +2783,7 @@
|
|
|
2833
2783
|
},
|
|
2834
2784
|
{
|
|
2835
2785
|
"type": "SYMBOL",
|
|
2836
|
-
"name": "
|
|
2786
|
+
"name": "_statement"
|
|
2837
2787
|
}
|
|
2838
2788
|
]
|
|
2839
2789
|
},
|
|
@@ -2855,7 +2805,7 @@
|
|
|
2855
2805
|
},
|
|
2856
2806
|
{
|
|
2857
2807
|
"type": "SYMBOL",
|
|
2858
|
-
"name": "
|
|
2808
|
+
"name": "_statement"
|
|
2859
2809
|
}
|
|
2860
2810
|
]
|
|
2861
2811
|
},
|
|
@@ -2877,7 +2827,7 @@
|
|
|
2877
2827
|
},
|
|
2878
2828
|
{
|
|
2879
2829
|
"type": "SYMBOL",
|
|
2880
|
-
"name": "
|
|
2830
|
+
"name": "_statement"
|
|
2881
2831
|
}
|
|
2882
2832
|
]
|
|
2883
2833
|
},
|
|
@@ -3041,7 +2991,7 @@
|
|
|
3041
2991
|
},
|
|
3042
2992
|
{
|
|
3043
2993
|
"type": "SYMBOL",
|
|
3044
|
-
"name": "
|
|
2994
|
+
"name": "_statement"
|
|
3045
2995
|
}
|
|
3046
2996
|
]
|
|
3047
2997
|
},
|
|
@@ -3059,7 +3009,7 @@
|
|
|
3059
3009
|
},
|
|
3060
3010
|
{
|
|
3061
3011
|
"type": "SYMBOL",
|
|
3062
|
-
"name": "
|
|
3012
|
+
"name": "_statement"
|
|
3063
3013
|
}
|
|
3064
3014
|
]
|
|
3065
3015
|
},
|
|
@@ -3077,7 +3027,7 @@
|
|
|
3077
3027
|
},
|
|
3078
3028
|
{
|
|
3079
3029
|
"type": "SYMBOL",
|
|
3080
|
-
"name": "
|
|
3030
|
+
"name": "_statement"
|
|
3081
3031
|
}
|
|
3082
3032
|
]
|
|
3083
3033
|
},
|
|
@@ -3198,141 +3148,28 @@
|
|
|
3198
3148
|
"value": "command"
|
|
3199
3149
|
},
|
|
3200
3150
|
{
|
|
3201
|
-
"type": "
|
|
3202
|
-
"members": [
|
|
3203
|
-
{
|
|
3204
|
-
"type": "SYMBOL",
|
|
3205
|
-
"name": "_options2"
|
|
3206
|
-
},
|
|
3207
|
-
{
|
|
3208
|
-
"type": "SYMBOL",
|
|
3209
|
-
"name": "_options3"
|
|
3210
|
-
}
|
|
3211
|
-
]
|
|
3212
|
-
}
|
|
3213
|
-
]
|
|
3214
|
-
},
|
|
3215
|
-
"_options3": {
|
|
3216
|
-
"type": "SEQ",
|
|
3217
|
-
"members": [
|
|
3218
|
-
{
|
|
3219
|
-
"type": "SEQ",
|
|
3220
|
-
"members": [
|
|
3221
|
-
{
|
|
3222
|
-
"type": "SYMBOL",
|
|
3223
|
-
"name": "option"
|
|
3224
|
-
},
|
|
3225
|
-
{
|
|
3226
|
-
"type": "CHOICE",
|
|
3227
|
-
"members": [
|
|
3228
|
-
{
|
|
3229
|
-
"type": "STRING",
|
|
3230
|
-
"value": " "
|
|
3231
|
-
},
|
|
3232
|
-
{
|
|
3233
|
-
"type": "BLANK"
|
|
3234
|
-
}
|
|
3235
|
-
]
|
|
3236
|
-
},
|
|
3237
|
-
{
|
|
3238
|
-
"type": "CHOICE",
|
|
3239
|
-
"members": [
|
|
3240
|
-
{
|
|
3241
|
-
"type": "STRING",
|
|
3242
|
-
"value": "+="
|
|
3243
|
-
},
|
|
3244
|
-
{
|
|
3245
|
-
"type": "STRING",
|
|
3246
|
-
"value": "-="
|
|
3247
|
-
},
|
|
3248
|
-
{
|
|
3249
|
-
"type": "STRING",
|
|
3250
|
-
"value": "="
|
|
3251
|
-
}
|
|
3252
|
-
]
|
|
3253
|
-
},
|
|
3254
|
-
{
|
|
3255
|
-
"type": "CHOICE",
|
|
3256
|
-
"members": [
|
|
3257
|
-
{
|
|
3258
|
-
"type": "STRING",
|
|
3259
|
-
"value": " "
|
|
3260
|
-
},
|
|
3261
|
-
{
|
|
3262
|
-
"type": "BLANK"
|
|
3263
|
-
}
|
|
3264
|
-
]
|
|
3265
|
-
},
|
|
3266
|
-
{
|
|
3267
|
-
"type": "CHOICE",
|
|
3268
|
-
"members": [
|
|
3269
|
-
{
|
|
3270
|
-
"type": "SYMBOL",
|
|
3271
|
-
"name": "int"
|
|
3272
|
-
},
|
|
3273
|
-
{
|
|
3274
|
-
"type": "SYMBOL",
|
|
3275
|
-
"name": "quadoption"
|
|
3276
|
-
},
|
|
3277
|
-
{
|
|
3278
|
-
"type": "SYMBOL",
|
|
3279
|
-
"name": "_string"
|
|
3280
|
-
}
|
|
3281
|
-
]
|
|
3282
|
-
}
|
|
3283
|
-
]
|
|
3284
|
-
},
|
|
3285
|
-
{
|
|
3286
|
-
"type": "REPEAT",
|
|
3151
|
+
"type": "REPEAT1",
|
|
3287
3152
|
"content": {
|
|
3288
|
-
"type": "
|
|
3153
|
+
"type": "CHOICE",
|
|
3289
3154
|
"members": [
|
|
3290
|
-
{
|
|
3291
|
-
"type": "STRING",
|
|
3292
|
-
"value": " "
|
|
3293
|
-
},
|
|
3294
3155
|
{
|
|
3295
3156
|
"type": "SEQ",
|
|
3296
3157
|
"members": [
|
|
3297
|
-
{
|
|
3298
|
-
"type": "SYMBOL",
|
|
3299
|
-
"name": "option"
|
|
3300
|
-
},
|
|
3301
3158
|
{
|
|
3302
3159
|
"type": "CHOICE",
|
|
3303
3160
|
"members": [
|
|
3304
3161
|
{
|
|
3305
|
-
"type": "
|
|
3306
|
-
"
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
{
|
|
3317
|
-
"type": "STRING",
|
|
3318
|
-
"value": "+="
|
|
3319
|
-
},
|
|
3320
|
-
{
|
|
3321
|
-
"type": "STRING",
|
|
3322
|
-
"value": "-="
|
|
3323
|
-
},
|
|
3324
|
-
{
|
|
3325
|
-
"type": "STRING",
|
|
3326
|
-
"value": "="
|
|
3327
|
-
}
|
|
3328
|
-
]
|
|
3329
|
-
},
|
|
3330
|
-
{
|
|
3331
|
-
"type": "CHOICE",
|
|
3332
|
-
"members": [
|
|
3333
|
-
{
|
|
3334
|
-
"type": "STRING",
|
|
3335
|
-
"value": " "
|
|
3162
|
+
"type": "CHOICE",
|
|
3163
|
+
"members": [
|
|
3164
|
+
{
|
|
3165
|
+
"type": "STRING",
|
|
3166
|
+
"value": "&"
|
|
3167
|
+
},
|
|
3168
|
+
{
|
|
3169
|
+
"type": "STRING",
|
|
3170
|
+
"value": "?"
|
|
3171
|
+
}
|
|
3172
|
+
]
|
|
3336
3173
|
},
|
|
3337
3174
|
{
|
|
3338
3175
|
"type": "BLANK"
|
|
@@ -3340,87 +3177,57 @@
|
|
|
3340
3177
|
]
|
|
3341
3178
|
},
|
|
3342
3179
|
{
|
|
3343
|
-
"type": "
|
|
3344
|
-
"
|
|
3345
|
-
{
|
|
3346
|
-
"type": "SYMBOL",
|
|
3347
|
-
"name": "int"
|
|
3348
|
-
},
|
|
3349
|
-
{
|
|
3350
|
-
"type": "SYMBOL",
|
|
3351
|
-
"name": "quadoption"
|
|
3352
|
-
},
|
|
3353
|
-
{
|
|
3354
|
-
"type": "SYMBOL",
|
|
3355
|
-
"name": "_string"
|
|
3356
|
-
}
|
|
3357
|
-
]
|
|
3180
|
+
"type": "SYMBOL",
|
|
3181
|
+
"name": "option"
|
|
3358
3182
|
}
|
|
3359
3183
|
]
|
|
3360
|
-
}
|
|
3361
|
-
]
|
|
3362
|
-
}
|
|
3363
|
-
}
|
|
3364
|
-
]
|
|
3365
|
-
},
|
|
3366
|
-
"_options2": {
|
|
3367
|
-
"type": "SEQ",
|
|
3368
|
-
"members": [
|
|
3369
|
-
{
|
|
3370
|
-
"type": "SEQ",
|
|
3371
|
-
"members": [
|
|
3372
|
-
{
|
|
3373
|
-
"type": "CHOICE",
|
|
3374
|
-
"members": [
|
|
3375
|
-
{
|
|
3376
|
-
"type": "CHOICE",
|
|
3377
|
-
"members": [
|
|
3378
|
-
{
|
|
3379
|
-
"type": "STRING",
|
|
3380
|
-
"value": "&"
|
|
3381
|
-
},
|
|
3382
|
-
{
|
|
3383
|
-
"type": "STRING",
|
|
3384
|
-
"value": "?"
|
|
3385
|
-
}
|
|
3386
|
-
]
|
|
3387
|
-
},
|
|
3388
|
-
{
|
|
3389
|
-
"type": "BLANK"
|
|
3390
|
-
}
|
|
3391
|
-
]
|
|
3392
|
-
},
|
|
3393
|
-
{
|
|
3394
|
-
"type": "SYMBOL",
|
|
3395
|
-
"name": "option"
|
|
3396
|
-
}
|
|
3397
|
-
]
|
|
3398
|
-
},
|
|
3399
|
-
{
|
|
3400
|
-
"type": "REPEAT",
|
|
3401
|
-
"content": {
|
|
3402
|
-
"type": "SEQ",
|
|
3403
|
-
"members": [
|
|
3404
|
-
{
|
|
3405
|
-
"type": "STRING",
|
|
3406
|
-
"value": " "
|
|
3407
3184
|
},
|
|
3408
3185
|
{
|
|
3409
3186
|
"type": "SEQ",
|
|
3410
3187
|
"members": [
|
|
3188
|
+
{
|
|
3189
|
+
"type": "SYMBOL",
|
|
3190
|
+
"name": "option"
|
|
3191
|
+
},
|
|
3411
3192
|
{
|
|
3412
3193
|
"type": "CHOICE",
|
|
3413
3194
|
"members": [
|
|
3414
3195
|
{
|
|
3415
|
-
"type": "
|
|
3196
|
+
"type": "SEQ",
|
|
3416
3197
|
"members": [
|
|
3417
3198
|
{
|
|
3418
|
-
"type": "
|
|
3419
|
-
"
|
|
3199
|
+
"type": "CHOICE",
|
|
3200
|
+
"members": [
|
|
3201
|
+
{
|
|
3202
|
+
"type": "STRING",
|
|
3203
|
+
"value": "+="
|
|
3204
|
+
},
|
|
3205
|
+
{
|
|
3206
|
+
"type": "STRING",
|
|
3207
|
+
"value": "-="
|
|
3208
|
+
},
|
|
3209
|
+
{
|
|
3210
|
+
"type": "STRING",
|
|
3211
|
+
"value": "="
|
|
3212
|
+
}
|
|
3213
|
+
]
|
|
3420
3214
|
},
|
|
3421
3215
|
{
|
|
3422
|
-
"type": "
|
|
3423
|
-
"
|
|
3216
|
+
"type": "CHOICE",
|
|
3217
|
+
"members": [
|
|
3218
|
+
{
|
|
3219
|
+
"type": "SYMBOL",
|
|
3220
|
+
"name": "int"
|
|
3221
|
+
},
|
|
3222
|
+
{
|
|
3223
|
+
"type": "SYMBOL",
|
|
3224
|
+
"name": "quadoption"
|
|
3225
|
+
},
|
|
3226
|
+
{
|
|
3227
|
+
"type": "SYMBOL",
|
|
3228
|
+
"name": "_string"
|
|
3229
|
+
}
|
|
3230
|
+
]
|
|
3424
3231
|
}
|
|
3425
3232
|
]
|
|
3426
3233
|
},
|
|
@@ -3428,10 +3235,6 @@
|
|
|
3428
3235
|
"type": "BLANK"
|
|
3429
3236
|
}
|
|
3430
3237
|
]
|
|
3431
|
-
},
|
|
3432
|
-
{
|
|
3433
|
-
"type": "SYMBOL",
|
|
3434
|
-
"name": "option"
|
|
3435
3238
|
}
|
|
3436
3239
|
]
|
|
3437
3240
|
}
|
|
@@ -3441,29 +3244,11 @@
|
|
|
3441
3244
|
]
|
|
3442
3245
|
},
|
|
3443
3246
|
"_options": {
|
|
3444
|
-
"type": "
|
|
3445
|
-
"
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
},
|
|
3450
|
-
{
|
|
3451
|
-
"type": "REPEAT",
|
|
3452
|
-
"content": {
|
|
3453
|
-
"type": "SEQ",
|
|
3454
|
-
"members": [
|
|
3455
|
-
{
|
|
3456
|
-
"type": "STRING",
|
|
3457
|
-
"value": " "
|
|
3458
|
-
},
|
|
3459
|
-
{
|
|
3460
|
-
"type": "SYMBOL",
|
|
3461
|
-
"name": "option"
|
|
3462
|
-
}
|
|
3463
|
-
]
|
|
3464
|
-
}
|
|
3465
|
-
}
|
|
3466
|
-
]
|
|
3247
|
+
"type": "REPEAT1",
|
|
3248
|
+
"content": {
|
|
3249
|
+
"type": "SYMBOL",
|
|
3250
|
+
"name": "option"
|
|
3251
|
+
}
|
|
3467
3252
|
},
|
|
3468
3253
|
"unset_directive": {
|
|
3469
3254
|
"type": "SEQ",
|
|
@@ -3681,6 +3466,29 @@
|
|
|
3681
3466
|
}
|
|
3682
3467
|
]
|
|
3683
3468
|
},
|
|
3469
|
+
"source_directive": {
|
|
3470
|
+
"type": "SEQ",
|
|
3471
|
+
"members": [
|
|
3472
|
+
{
|
|
3473
|
+
"type": "ALIAS",
|
|
3474
|
+
"content": {
|
|
3475
|
+
"type": "STRING",
|
|
3476
|
+
"value": "source"
|
|
3477
|
+
},
|
|
3478
|
+
"named": true,
|
|
3479
|
+
"value": "command"
|
|
3480
|
+
},
|
|
3481
|
+
{
|
|
3482
|
+
"type": "ALIAS",
|
|
3483
|
+
"content": {
|
|
3484
|
+
"type": "SYMBOL",
|
|
3485
|
+
"name": "_string"
|
|
3486
|
+
},
|
|
3487
|
+
"named": true,
|
|
3488
|
+
"value": "path"
|
|
3489
|
+
}
|
|
3490
|
+
]
|
|
3491
|
+
},
|
|
3684
3492
|
"option": {
|
|
3685
3493
|
"type": "PATTERN",
|
|
3686
3494
|
"value": "[a-z_\\d]+"
|
|
@@ -3757,7 +3565,7 @@
|
|
|
3757
3565
|
}
|
|
3758
3566
|
},
|
|
3759
3567
|
"named": true,
|
|
3760
|
-
"value": "
|
|
3568
|
+
"value": "string"
|
|
3761
3569
|
},
|
|
3762
3570
|
{
|
|
3763
3571
|
"type": "STRING",
|
|
@@ -3798,7 +3606,7 @@
|
|
|
3798
3606
|
"name": "_word"
|
|
3799
3607
|
},
|
|
3800
3608
|
"named": true,
|
|
3801
|
-
"value": "
|
|
3609
|
+
"value": "string"
|
|
3802
3610
|
}
|
|
3803
3611
|
]
|
|
3804
3612
|
},
|
|
@@ -3896,80 +3704,31 @@
|
|
|
3896
3704
|
},
|
|
3897
3705
|
"_word": {
|
|
3898
3706
|
"type": "PATTERN",
|
|
3899
|
-
"value": "(
|
|
3707
|
+
"value": "([^\"'`#;\\s]|\\\\.)+"
|
|
3900
3708
|
},
|
|
3901
|
-
"
|
|
3709
|
+
"comment": {
|
|
3902
3710
|
"type": "SEQ",
|
|
3903
3711
|
"members": [
|
|
3904
3712
|
{
|
|
3905
|
-
"type": "
|
|
3906
|
-
"
|
|
3907
|
-
"type": "STRING",
|
|
3908
|
-
"value": "source"
|
|
3909
|
-
},
|
|
3910
|
-
"named": true,
|
|
3911
|
-
"value": "command"
|
|
3713
|
+
"type": "STRING",
|
|
3714
|
+
"value": "#"
|
|
3912
3715
|
},
|
|
3913
3716
|
{
|
|
3914
|
-
"type": "ALIAS",
|
|
3915
|
-
"content": {
|
|
3916
|
-
"type": "SYMBOL",
|
|
3917
|
-
"name": "_string"
|
|
3918
|
-
},
|
|
3919
|
-
"named": true,
|
|
3920
|
-
"value": "path"
|
|
3921
|
-
}
|
|
3922
|
-
]
|
|
3923
|
-
},
|
|
3924
|
-
"comment": {
|
|
3925
|
-
"type": "PATTERN",
|
|
3926
|
-
"value": "#[^\\n]*"
|
|
3927
|
-
},
|
|
3928
|
-
"_eol": {
|
|
3929
|
-
"type": "PATTERN",
|
|
3930
|
-
"value": "\\r?\\n"
|
|
3931
|
-
},
|
|
3932
|
-
"_space": {
|
|
3933
|
-
"type": "PREC",
|
|
3934
|
-
"value": -1,
|
|
3935
|
-
"content": {
|
|
3936
|
-
"type": "REPEAT1",
|
|
3937
|
-
"content": {
|
|
3938
3717
|
"type": "PATTERN",
|
|
3939
|
-
"value": "[
|
|
3718
|
+
"value": "[^\\n]*"
|
|
3940
3719
|
}
|
|
3941
|
-
|
|
3720
|
+
]
|
|
3942
3721
|
},
|
|
3943
|
-
"
|
|
3944
|
-
"type": "
|
|
3722
|
+
"_terminator": {
|
|
3723
|
+
"type": "CHOICE",
|
|
3945
3724
|
"members": [
|
|
3946
3725
|
{
|
|
3947
|
-
"type": "
|
|
3948
|
-
"
|
|
3949
|
-
{
|
|
3950
|
-
"type": "SYMBOL",
|
|
3951
|
-
"name": "_space"
|
|
3952
|
-
},
|
|
3953
|
-
{
|
|
3954
|
-
"type": "BLANK"
|
|
3955
|
-
}
|
|
3956
|
-
]
|
|
3957
|
-
},
|
|
3958
|
-
{
|
|
3959
|
-
"type": "CHOICE",
|
|
3960
|
-
"members": [
|
|
3961
|
-
{
|
|
3962
|
-
"type": "SYMBOL",
|
|
3963
|
-
"name": "comment"
|
|
3964
|
-
},
|
|
3965
|
-
{
|
|
3966
|
-
"type": "BLANK"
|
|
3967
|
-
}
|
|
3968
|
-
]
|
|
3726
|
+
"type": "STRING",
|
|
3727
|
+
"value": ";"
|
|
3969
3728
|
},
|
|
3970
3729
|
{
|
|
3971
|
-
"type": "
|
|
3972
|
-
"
|
|
3730
|
+
"type": "PATTERN",
|
|
3731
|
+
"value": "\\n"
|
|
3973
3732
|
}
|
|
3974
3733
|
]
|
|
3975
3734
|
}
|
|
@@ -3982,11 +3741,20 @@
|
|
|
3982
3741
|
{
|
|
3983
3742
|
"type": "PATTERN",
|
|
3984
3743
|
"value": "\\\\\\r?\\n"
|
|
3744
|
+
},
|
|
3745
|
+
{
|
|
3746
|
+
"type": "SYMBOL",
|
|
3747
|
+
"name": "comment"
|
|
3748
|
+
},
|
|
3749
|
+
{
|
|
3750
|
+
"type": "PATTERN",
|
|
3751
|
+
"value": "\\\\( |\\t|\\v|\\f)"
|
|
3985
3752
|
}
|
|
3986
3753
|
],
|
|
3987
3754
|
"conflicts": [],
|
|
3988
3755
|
"precedences": [],
|
|
3989
3756
|
"externals": [],
|
|
3990
3757
|
"inline": [],
|
|
3991
|
-
"supertypes": []
|
|
3992
|
-
}
|
|
3758
|
+
"supertypes": [],
|
|
3759
|
+
"reserved": {}
|
|
3760
|
+
}
|