tree-sitter-beancount 2.1.0 → 2.1.2
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/.github/workflows/release.yml +2 -2
- package/CHANGELOG.md +17 -1
- package/Cargo.lock +59 -0
- package/Cargo.toml +1 -1
- package/README.md +5 -1
- package/bindings/rust/build.rs +0 -2
- package/grammar.js +130 -150
- package/package.json +1 -1
- package/src/grammar.json +257 -591
- package/src/node-types.json +276 -393
- package/src/parser.c +10783 -9798
- package/test/corpus/arithmetic.txt +21 -44
- package/test/corpus/comment.txt +5 -15
- package/test/corpus/currencies.txt +6 -12
- package/test/corpus/entry_types.txt +7 -20
- package/test/corpus/markdown_orgmode.txt +4 -8
- package/test/corpus/metadata.txt +76 -93
- package/test/corpus/multi_line.txt +2 -4
- package/test/corpus/parse_lots.txt +16 -110
- package/test/corpus/parser_links.txt +2 -4
- package/test/corpus/push_pop_meta.txt +3 -5
- package/test/corpus/transaction.txt +24 -46
- package/test/corpus/ugly_bugs.txt +2 -4
package/src/grammar.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beancount",
|
|
3
|
+
"word": "identifier",
|
|
3
4
|
"rules": {
|
|
4
5
|
"file": {
|
|
5
6
|
"type": "REPEAT",
|
|
@@ -146,13 +147,6 @@
|
|
|
146
147
|
"value": "[ \\r\\t]+"
|
|
147
148
|
}
|
|
148
149
|
},
|
|
149
|
-
"_pipe": {
|
|
150
|
-
"type": "TOKEN",
|
|
151
|
-
"content": {
|
|
152
|
-
"type": "STRING",
|
|
153
|
-
"value": "|"
|
|
154
|
-
}
|
|
155
|
-
},
|
|
156
150
|
"atat": {
|
|
157
151
|
"type": "TOKEN",
|
|
158
152
|
"content": {
|
|
@@ -167,62 +161,6 @@
|
|
|
167
161
|
"value": "@"
|
|
168
162
|
}
|
|
169
163
|
},
|
|
170
|
-
"lcurllcurl": {
|
|
171
|
-
"type": "TOKEN",
|
|
172
|
-
"content": {
|
|
173
|
-
"type": "STRING",
|
|
174
|
-
"value": "{{"
|
|
175
|
-
}
|
|
176
|
-
},
|
|
177
|
-
"rcurlrcurl": {
|
|
178
|
-
"type": "TOKEN",
|
|
179
|
-
"content": {
|
|
180
|
-
"type": "STRING",
|
|
181
|
-
"value": "}}"
|
|
182
|
-
}
|
|
183
|
-
},
|
|
184
|
-
"lcurl": {
|
|
185
|
-
"type": "TOKEN",
|
|
186
|
-
"content": {
|
|
187
|
-
"type": "STRING",
|
|
188
|
-
"value": "{"
|
|
189
|
-
}
|
|
190
|
-
},
|
|
191
|
-
"rcurl": {
|
|
192
|
-
"type": "TOKEN",
|
|
193
|
-
"content": {
|
|
194
|
-
"type": "STRING",
|
|
195
|
-
"value": "}"
|
|
196
|
-
}
|
|
197
|
-
},
|
|
198
|
-
"_equal": {
|
|
199
|
-
"type": "TOKEN",
|
|
200
|
-
"content": {
|
|
201
|
-
"type": "STRING",
|
|
202
|
-
"value": "="
|
|
203
|
-
}
|
|
204
|
-
},
|
|
205
|
-
"_comma": {
|
|
206
|
-
"type": "TOKEN",
|
|
207
|
-
"content": {
|
|
208
|
-
"type": "STRING",
|
|
209
|
-
"value": ","
|
|
210
|
-
}
|
|
211
|
-
},
|
|
212
|
-
"_tilde": {
|
|
213
|
-
"type": "TOKEN",
|
|
214
|
-
"content": {
|
|
215
|
-
"type": "STRING",
|
|
216
|
-
"value": "~"
|
|
217
|
-
}
|
|
218
|
-
},
|
|
219
|
-
"_hash": {
|
|
220
|
-
"type": "TOKEN",
|
|
221
|
-
"content": {
|
|
222
|
-
"type": "STRING",
|
|
223
|
-
"value": "#"
|
|
224
|
-
}
|
|
225
|
-
},
|
|
226
164
|
"asterisk": {
|
|
227
165
|
"type": "TOKEN",
|
|
228
166
|
"content": {
|
|
@@ -237,13 +175,6 @@
|
|
|
237
175
|
"value": "/"
|
|
238
176
|
}
|
|
239
177
|
},
|
|
240
|
-
"_colon": {
|
|
241
|
-
"type": "TOKEN",
|
|
242
|
-
"content": {
|
|
243
|
-
"type": "STRING",
|
|
244
|
-
"value": ":"
|
|
245
|
-
}
|
|
246
|
-
},
|
|
247
178
|
"plus": {
|
|
248
179
|
"type": "TOKEN",
|
|
249
180
|
"content": {
|
|
@@ -258,20 +189,6 @@
|
|
|
258
189
|
"value": "-"
|
|
259
190
|
}
|
|
260
191
|
},
|
|
261
|
-
"_lparen": {
|
|
262
|
-
"type": "TOKEN",
|
|
263
|
-
"content": {
|
|
264
|
-
"type": "STRING",
|
|
265
|
-
"value": "("
|
|
266
|
-
}
|
|
267
|
-
},
|
|
268
|
-
"_rparen": {
|
|
269
|
-
"type": "TOKEN",
|
|
270
|
-
"content": {
|
|
271
|
-
"type": "STRING",
|
|
272
|
-
"value": ")"
|
|
273
|
-
}
|
|
274
|
-
},
|
|
275
192
|
"flag": {
|
|
276
193
|
"type": "TOKEN",
|
|
277
194
|
"content": {
|
|
@@ -279,139 +196,6 @@
|
|
|
279
196
|
"value": "[!&?%PSTCURM*#]"
|
|
280
197
|
}
|
|
281
198
|
},
|
|
282
|
-
"TXN": {
|
|
283
|
-
"type": "TOKEN",
|
|
284
|
-
"content": {
|
|
285
|
-
"type": "STRING",
|
|
286
|
-
"value": "txn"
|
|
287
|
-
}
|
|
288
|
-
},
|
|
289
|
-
"BALANCE": {
|
|
290
|
-
"type": "TOKEN",
|
|
291
|
-
"content": {
|
|
292
|
-
"type": "STRING",
|
|
293
|
-
"value": "balance"
|
|
294
|
-
}
|
|
295
|
-
},
|
|
296
|
-
"OPEN": {
|
|
297
|
-
"type": "TOKEN",
|
|
298
|
-
"content": {
|
|
299
|
-
"type": "STRING",
|
|
300
|
-
"value": "open"
|
|
301
|
-
}
|
|
302
|
-
},
|
|
303
|
-
"CLOSE": {
|
|
304
|
-
"type": "TOKEN",
|
|
305
|
-
"content": {
|
|
306
|
-
"type": "STRING",
|
|
307
|
-
"value": "close"
|
|
308
|
-
}
|
|
309
|
-
},
|
|
310
|
-
"COMMODITY": {
|
|
311
|
-
"type": "TOKEN",
|
|
312
|
-
"content": {
|
|
313
|
-
"type": "STRING",
|
|
314
|
-
"value": "commodity"
|
|
315
|
-
}
|
|
316
|
-
},
|
|
317
|
-
"PAD": {
|
|
318
|
-
"type": "TOKEN",
|
|
319
|
-
"content": {
|
|
320
|
-
"type": "STRING",
|
|
321
|
-
"value": "pad"
|
|
322
|
-
}
|
|
323
|
-
},
|
|
324
|
-
"EVENT": {
|
|
325
|
-
"type": "TOKEN",
|
|
326
|
-
"content": {
|
|
327
|
-
"type": "STRING",
|
|
328
|
-
"value": "event"
|
|
329
|
-
}
|
|
330
|
-
},
|
|
331
|
-
"PRICE": {
|
|
332
|
-
"type": "TOKEN",
|
|
333
|
-
"content": {
|
|
334
|
-
"type": "STRING",
|
|
335
|
-
"value": "price"
|
|
336
|
-
}
|
|
337
|
-
},
|
|
338
|
-
"NOTE": {
|
|
339
|
-
"type": "TOKEN",
|
|
340
|
-
"content": {
|
|
341
|
-
"type": "STRING",
|
|
342
|
-
"value": "note"
|
|
343
|
-
}
|
|
344
|
-
},
|
|
345
|
-
"DOCUMENT": {
|
|
346
|
-
"type": "TOKEN",
|
|
347
|
-
"content": {
|
|
348
|
-
"type": "STRING",
|
|
349
|
-
"value": "document"
|
|
350
|
-
}
|
|
351
|
-
},
|
|
352
|
-
"QUERY": {
|
|
353
|
-
"type": "TOKEN",
|
|
354
|
-
"content": {
|
|
355
|
-
"type": "STRING",
|
|
356
|
-
"value": "query"
|
|
357
|
-
}
|
|
358
|
-
},
|
|
359
|
-
"CUSTOM": {
|
|
360
|
-
"type": "TOKEN",
|
|
361
|
-
"content": {
|
|
362
|
-
"type": "STRING",
|
|
363
|
-
"value": "custom"
|
|
364
|
-
}
|
|
365
|
-
},
|
|
366
|
-
"PUSHTAG": {
|
|
367
|
-
"type": "TOKEN",
|
|
368
|
-
"content": {
|
|
369
|
-
"type": "STRING",
|
|
370
|
-
"value": "pushtag"
|
|
371
|
-
}
|
|
372
|
-
},
|
|
373
|
-
"POPTAG": {
|
|
374
|
-
"type": "TOKEN",
|
|
375
|
-
"content": {
|
|
376
|
-
"type": "STRING",
|
|
377
|
-
"value": "poptag"
|
|
378
|
-
}
|
|
379
|
-
},
|
|
380
|
-
"PUSHMETA": {
|
|
381
|
-
"type": "TOKEN",
|
|
382
|
-
"content": {
|
|
383
|
-
"type": "STRING",
|
|
384
|
-
"value": "pushmeta"
|
|
385
|
-
}
|
|
386
|
-
},
|
|
387
|
-
"POPMETA": {
|
|
388
|
-
"type": "TOKEN",
|
|
389
|
-
"content": {
|
|
390
|
-
"type": "STRING",
|
|
391
|
-
"value": "popmeta"
|
|
392
|
-
}
|
|
393
|
-
},
|
|
394
|
-
"OPTION": {
|
|
395
|
-
"type": "TOKEN",
|
|
396
|
-
"content": {
|
|
397
|
-
"type": "STRING",
|
|
398
|
-
"value": "option"
|
|
399
|
-
}
|
|
400
|
-
},
|
|
401
|
-
"INCLUDE": {
|
|
402
|
-
"type": "TOKEN",
|
|
403
|
-
"content": {
|
|
404
|
-
"type": "STRING",
|
|
405
|
-
"value": "include"
|
|
406
|
-
}
|
|
407
|
-
},
|
|
408
|
-
"PLUGIN": {
|
|
409
|
-
"type": "TOKEN",
|
|
410
|
-
"content": {
|
|
411
|
-
"type": "STRING",
|
|
412
|
-
"value": "plugin"
|
|
413
|
-
}
|
|
414
|
-
},
|
|
415
199
|
"_none": {
|
|
416
200
|
"type": "TOKEN",
|
|
417
201
|
"content": {
|
|
@@ -440,14 +224,7 @@
|
|
|
440
224
|
"members": [
|
|
441
225
|
{
|
|
442
226
|
"type": "PATTERN",
|
|
443
|
-
"value": "
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"type": "REPEAT",
|
|
447
|
-
"content": {
|
|
448
|
-
"type": "PATTERN",
|
|
449
|
-
"value": "[A-Za-z0-9\\-]|[^\\x00-\\x7F]"
|
|
450
|
-
}
|
|
227
|
+
"value": "Assets|Liabilities|Equity|Income|Expenses"
|
|
451
228
|
},
|
|
452
229
|
{
|
|
453
230
|
"type": "REPEAT1",
|
|
@@ -460,14 +237,7 @@
|
|
|
460
237
|
},
|
|
461
238
|
{
|
|
462
239
|
"type": "PATTERN",
|
|
463
|
-
"value": "[
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"type": "REPEAT",
|
|
467
|
-
"content": {
|
|
468
|
-
"type": "PATTERN",
|
|
469
|
-
"value": "[A-Za-z0-9\\-]|[^\\x00-\\x7F]"
|
|
470
|
-
}
|
|
240
|
+
"value": "[\\p{Lu}\\p{N}][\\p{L}\\p{N}\\-]*"
|
|
471
241
|
}
|
|
472
242
|
]
|
|
473
243
|
}
|
|
@@ -510,31 +280,24 @@
|
|
|
510
280
|
"value": "\\^[A-Za-z0-9\\-_/.]+"
|
|
511
281
|
}
|
|
512
282
|
},
|
|
513
|
-
"key": {
|
|
514
|
-
"type": "TOKEN",
|
|
515
|
-
"content": {
|
|
516
|
-
"type": "PATTERN",
|
|
517
|
-
"value": "[a-z][a-zA-Z0-9\\-_]+"
|
|
518
|
-
}
|
|
519
|
-
},
|
|
520
283
|
"txn": {
|
|
521
284
|
"type": "CHOICE",
|
|
522
285
|
"members": [
|
|
523
286
|
{
|
|
524
|
-
"type": "
|
|
525
|
-
"
|
|
287
|
+
"type": "STRING",
|
|
288
|
+
"value": "txn"
|
|
526
289
|
},
|
|
527
290
|
{
|
|
528
291
|
"type": "SYMBOL",
|
|
529
292
|
"name": "flag"
|
|
530
293
|
},
|
|
531
294
|
{
|
|
532
|
-
"type": "
|
|
533
|
-
"
|
|
295
|
+
"type": "STRING",
|
|
296
|
+
"value": "*"
|
|
534
297
|
},
|
|
535
298
|
{
|
|
536
|
-
"type": "
|
|
537
|
-
"
|
|
299
|
+
"type": "STRING",
|
|
300
|
+
"value": "#"
|
|
538
301
|
}
|
|
539
302
|
]
|
|
540
303
|
},
|
|
@@ -563,16 +326,16 @@
|
|
|
563
326
|
"type": "SEQ",
|
|
564
327
|
"members": [
|
|
565
328
|
{
|
|
566
|
-
"type": "
|
|
567
|
-
"
|
|
329
|
+
"type": "STRING",
|
|
330
|
+
"value": "("
|
|
568
331
|
},
|
|
569
332
|
{
|
|
570
333
|
"type": "SYMBOL",
|
|
571
334
|
"name": "_number_expr"
|
|
572
335
|
},
|
|
573
336
|
{
|
|
574
|
-
"type": "
|
|
575
|
-
"
|
|
337
|
+
"type": "STRING",
|
|
338
|
+
"value": ")"
|
|
576
339
|
}
|
|
577
340
|
]
|
|
578
341
|
},
|
|
@@ -704,24 +467,40 @@
|
|
|
704
467
|
]
|
|
705
468
|
}
|
|
706
469
|
},
|
|
707
|
-
"
|
|
708
|
-
"type": "
|
|
470
|
+
"_txn_strings": {
|
|
471
|
+
"type": "CHOICE",
|
|
709
472
|
"members": [
|
|
710
473
|
{
|
|
711
|
-
"type": "
|
|
712
|
-
"name": "string"
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"type": "CHOICE",
|
|
474
|
+
"type": "SEQ",
|
|
716
475
|
"members": [
|
|
717
476
|
{
|
|
718
|
-
"type": "
|
|
719
|
-
"
|
|
477
|
+
"type": "ALIAS",
|
|
478
|
+
"content": {
|
|
479
|
+
"type": "SYMBOL",
|
|
480
|
+
"name": "string"
|
|
481
|
+
},
|
|
482
|
+
"named": true,
|
|
483
|
+
"value": "payee"
|
|
720
484
|
},
|
|
721
485
|
{
|
|
722
|
-
"type": "
|
|
486
|
+
"type": "ALIAS",
|
|
487
|
+
"content": {
|
|
488
|
+
"type": "SYMBOL",
|
|
489
|
+
"name": "string"
|
|
490
|
+
},
|
|
491
|
+
"named": true,
|
|
492
|
+
"value": "narration"
|
|
723
493
|
}
|
|
724
494
|
]
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"type": "ALIAS",
|
|
498
|
+
"content": {
|
|
499
|
+
"type": "SYMBOL",
|
|
500
|
+
"name": "string"
|
|
501
|
+
},
|
|
502
|
+
"named": true,
|
|
503
|
+
"value": "narration"
|
|
725
504
|
}
|
|
726
505
|
]
|
|
727
506
|
},
|
|
@@ -761,20 +540,16 @@
|
|
|
761
540
|
}
|
|
762
541
|
},
|
|
763
542
|
{
|
|
764
|
-
"type": "
|
|
765
|
-
"
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
"type": "BLANK"
|
|
775
|
-
}
|
|
776
|
-
]
|
|
777
|
-
}
|
|
543
|
+
"type": "CHOICE",
|
|
544
|
+
"members": [
|
|
545
|
+
{
|
|
546
|
+
"type": "SYMBOL",
|
|
547
|
+
"name": "_txn_strings"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"type": "BLANK"
|
|
551
|
+
}
|
|
552
|
+
]
|
|
778
553
|
},
|
|
779
554
|
{
|
|
780
555
|
"type": "FIELD",
|
|
@@ -813,20 +588,75 @@
|
|
|
813
588
|
"name": "_eol"
|
|
814
589
|
},
|
|
815
590
|
{
|
|
816
|
-
"type": "
|
|
817
|
-
"
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
"
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
591
|
+
"type": "CHOICE",
|
|
592
|
+
"members": [
|
|
593
|
+
{
|
|
594
|
+
"type": "REPEAT1",
|
|
595
|
+
"content": {
|
|
596
|
+
"type": "CHOICE",
|
|
597
|
+
"members": [
|
|
598
|
+
{
|
|
599
|
+
"type": "SEQ",
|
|
600
|
+
"members": [
|
|
601
|
+
{
|
|
602
|
+
"type": "SYMBOL",
|
|
603
|
+
"name": "_indent"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"type": "SYMBOL",
|
|
607
|
+
"name": "_eol"
|
|
608
|
+
}
|
|
609
|
+
]
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"type": "SEQ",
|
|
613
|
+
"members": [
|
|
614
|
+
{
|
|
615
|
+
"type": "SYMBOL",
|
|
616
|
+
"name": "_indent"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"type": "SYMBOL",
|
|
620
|
+
"name": "tags_links"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"type": "SYMBOL",
|
|
624
|
+
"name": "_eol"
|
|
625
|
+
}
|
|
626
|
+
]
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"type": "SYMBOL",
|
|
630
|
+
"name": "_key_value_line"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"type": "SYMBOL",
|
|
634
|
+
"name": "posting"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"type": "SEQ",
|
|
638
|
+
"members": [
|
|
639
|
+
{
|
|
640
|
+
"type": "SYMBOL",
|
|
641
|
+
"name": "_indent"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"type": "SYMBOL",
|
|
645
|
+
"name": "comment"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"type": "SYMBOL",
|
|
649
|
+
"name": "_eol"
|
|
650
|
+
}
|
|
651
|
+
]
|
|
652
|
+
}
|
|
653
|
+
]
|
|
827
654
|
}
|
|
828
|
-
|
|
829
|
-
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"type": "BLANK"
|
|
658
|
+
}
|
|
659
|
+
]
|
|
830
660
|
}
|
|
831
661
|
]
|
|
832
662
|
},
|
|
@@ -834,12 +664,12 @@
|
|
|
834
664
|
"type": "CHOICE",
|
|
835
665
|
"members": [
|
|
836
666
|
{
|
|
837
|
-
"type": "
|
|
838
|
-
"
|
|
667
|
+
"type": "STRING",
|
|
668
|
+
"value": "*"
|
|
839
669
|
},
|
|
840
670
|
{
|
|
841
|
-
"type": "
|
|
842
|
-
"
|
|
671
|
+
"type": "STRING",
|
|
672
|
+
"value": "#"
|
|
843
673
|
},
|
|
844
674
|
{
|
|
845
675
|
"type": "SYMBOL",
|
|
@@ -1202,71 +1032,32 @@
|
|
|
1202
1032
|
"content": {
|
|
1203
1033
|
"type": "CHOICE",
|
|
1204
1034
|
"members": [
|
|
1205
|
-
{
|
|
1206
|
-
"type": "SYMBOL",
|
|
1207
|
-
"name": "comment"
|
|
1208
|
-
},
|
|
1209
|
-
{
|
|
1210
|
-
"type": "BLANK"
|
|
1211
|
-
}
|
|
1212
|
-
]
|
|
1213
|
-
}
|
|
1214
|
-
},
|
|
1215
|
-
{
|
|
1216
|
-
"type": "SYMBOL",
|
|
1217
|
-
"name": "_eol"
|
|
1218
|
-
}
|
|
1219
|
-
]
|
|
1220
|
-
}
|
|
1221
|
-
]
|
|
1222
|
-
},
|
|
1223
|
-
"key_value": {
|
|
1224
|
-
"type": "PREC_LEFT",
|
|
1225
|
-
"value": 0,
|
|
1226
|
-
"content": {
|
|
1227
|
-
"type": "SEQ",
|
|
1228
|
-
"members": [
|
|
1229
|
-
{
|
|
1230
|
-
"type": "SYMBOL",
|
|
1231
|
-
"name": "key"
|
|
1232
|
-
},
|
|
1233
|
-
{
|
|
1234
|
-
"type": "SYMBOL",
|
|
1235
|
-
"name": "_colon"
|
|
1236
|
-
},
|
|
1237
|
-
{
|
|
1238
|
-
"type": "CHOICE",
|
|
1239
|
-
"members": [
|
|
1240
|
-
{
|
|
1241
|
-
"type": "SYMBOL",
|
|
1242
|
-
"name": "_key_value_value"
|
|
1243
|
-
},
|
|
1244
|
-
{
|
|
1245
|
-
"type": "BLANK"
|
|
1035
|
+
{
|
|
1036
|
+
"type": "SYMBOL",
|
|
1037
|
+
"name": "comment"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"type": "BLANK"
|
|
1041
|
+
}
|
|
1042
|
+
]
|
|
1246
1043
|
}
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
"type": "SEQ",
|
|
1254
|
-
"members": [
|
|
1255
|
-
{
|
|
1256
|
-
"type": "SYMBOL",
|
|
1257
|
-
"name": "_indent"
|
|
1258
|
-
},
|
|
1259
|
-
{
|
|
1260
|
-
"type": "SYMBOL",
|
|
1261
|
-
"name": "key_value"
|
|
1262
|
-
},
|
|
1263
|
-
{
|
|
1264
|
-
"type": "SYMBOL",
|
|
1265
|
-
"name": "_eol"
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"type": "SYMBOL",
|
|
1047
|
+
"name": "_eol"
|
|
1048
|
+
}
|
|
1049
|
+
]
|
|
1266
1050
|
}
|
|
1267
1051
|
]
|
|
1268
1052
|
},
|
|
1269
|
-
"
|
|
1053
|
+
"key": {
|
|
1054
|
+
"type": "TOKEN",
|
|
1055
|
+
"content": {
|
|
1056
|
+
"type": "PATTERN",
|
|
1057
|
+
"value": "[a-z][a-zA-Z0-9\\-_]+"
|
|
1058
|
+
}
|
|
1059
|
+
},
|
|
1060
|
+
"value": {
|
|
1270
1061
|
"type": "CHOICE",
|
|
1271
1062
|
"members": [
|
|
1272
1063
|
{
|
|
@@ -1307,70 +1098,45 @@
|
|
|
1307
1098
|
}
|
|
1308
1099
|
]
|
|
1309
1100
|
},
|
|
1310
|
-
"
|
|
1311
|
-
"type": "
|
|
1101
|
+
"key_value": {
|
|
1102
|
+
"type": "PREC_LEFT",
|
|
1103
|
+
"value": 0,
|
|
1312
1104
|
"content": {
|
|
1313
|
-
"type": "
|
|
1105
|
+
"type": "SEQ",
|
|
1314
1106
|
"members": [
|
|
1315
|
-
{
|
|
1316
|
-
"type": "SEQ",
|
|
1317
|
-
"members": [
|
|
1318
|
-
{
|
|
1319
|
-
"type": "SYMBOL",
|
|
1320
|
-
"name": "_indent"
|
|
1321
|
-
},
|
|
1322
|
-
{
|
|
1323
|
-
"type": "SYMBOL",
|
|
1324
|
-
"name": "_eol"
|
|
1325
|
-
}
|
|
1326
|
-
]
|
|
1327
|
-
},
|
|
1328
|
-
{
|
|
1329
|
-
"type": "SEQ",
|
|
1330
|
-
"members": [
|
|
1331
|
-
{
|
|
1332
|
-
"type": "SYMBOL",
|
|
1333
|
-
"name": "_indent"
|
|
1334
|
-
},
|
|
1335
|
-
{
|
|
1336
|
-
"type": "SYMBOL",
|
|
1337
|
-
"name": "tags_links"
|
|
1338
|
-
},
|
|
1339
|
-
{
|
|
1340
|
-
"type": "SYMBOL",
|
|
1341
|
-
"name": "_eol"
|
|
1342
|
-
}
|
|
1343
|
-
]
|
|
1344
|
-
},
|
|
1345
1107
|
{
|
|
1346
1108
|
"type": "SYMBOL",
|
|
1347
|
-
"name": "
|
|
1109
|
+
"name": "key"
|
|
1348
1110
|
},
|
|
1349
1111
|
{
|
|
1350
|
-
"type": "
|
|
1351
|
-
"
|
|
1112
|
+
"type": "STRING",
|
|
1113
|
+
"value": ":"
|
|
1352
1114
|
},
|
|
1353
1115
|
{
|
|
1354
|
-
"type": "
|
|
1355
|
-
"
|
|
1356
|
-
{
|
|
1357
|
-
"type": "SYMBOL",
|
|
1358
|
-
"name": "_indent"
|
|
1359
|
-
},
|
|
1360
|
-
{
|
|
1361
|
-
"type": "SYMBOL",
|
|
1362
|
-
"name": "comment"
|
|
1363
|
-
},
|
|
1364
|
-
{
|
|
1365
|
-
"type": "SYMBOL",
|
|
1366
|
-
"name": "_eol"
|
|
1367
|
-
}
|
|
1368
|
-
]
|
|
1116
|
+
"type": "SYMBOL",
|
|
1117
|
+
"name": "value"
|
|
1369
1118
|
}
|
|
1370
1119
|
]
|
|
1371
1120
|
}
|
|
1372
1121
|
},
|
|
1373
|
-
"
|
|
1122
|
+
"_key_value_line": {
|
|
1123
|
+
"type": "SEQ",
|
|
1124
|
+
"members": [
|
|
1125
|
+
{
|
|
1126
|
+
"type": "SYMBOL",
|
|
1127
|
+
"name": "_indent"
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"type": "SYMBOL",
|
|
1131
|
+
"name": "key_value"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"type": "SYMBOL",
|
|
1135
|
+
"name": "_eol"
|
|
1136
|
+
}
|
|
1137
|
+
]
|
|
1138
|
+
},
|
|
1139
|
+
"_key_value_list": {
|
|
1374
1140
|
"type": "REPEAT1",
|
|
1375
1141
|
"content": {
|
|
1376
1142
|
"type": "CHOICE",
|
|
@@ -1393,48 +1159,18 @@
|
|
|
1393
1159
|
"members": [
|
|
1394
1160
|
{
|
|
1395
1161
|
"type": "SYMBOL",
|
|
1396
|
-
"name": "
|
|
1162
|
+
"name": "_key_value_line"
|
|
1397
1163
|
}
|
|
1398
1164
|
]
|
|
1399
1165
|
}
|
|
1400
1166
|
]
|
|
1401
1167
|
}
|
|
1402
1168
|
},
|
|
1403
|
-
"currency_list": {
|
|
1404
|
-
"type": "SEQ",
|
|
1405
|
-
"members": [
|
|
1406
|
-
{
|
|
1407
|
-
"type": "SYMBOL",
|
|
1408
|
-
"name": "currency"
|
|
1409
|
-
},
|
|
1410
|
-
{
|
|
1411
|
-
"type": "REPEAT",
|
|
1412
|
-
"content": {
|
|
1413
|
-
"type": "SEQ",
|
|
1414
|
-
"members": [
|
|
1415
|
-
{
|
|
1416
|
-
"type": "SYMBOL",
|
|
1417
|
-
"name": "_comma"
|
|
1418
|
-
},
|
|
1419
|
-
{
|
|
1420
|
-
"type": "SYMBOL",
|
|
1421
|
-
"name": "currency"
|
|
1422
|
-
}
|
|
1423
|
-
]
|
|
1424
|
-
}
|
|
1425
|
-
}
|
|
1426
|
-
]
|
|
1427
|
-
},
|
|
1428
1169
|
"pushtag": {
|
|
1429
1170
|
"type": "SEQ",
|
|
1430
1171
|
"members": [
|
|
1431
1172
|
{
|
|
1432
|
-
"type": "
|
|
1433
|
-
"content": {
|
|
1434
|
-
"type": "SYMBOL",
|
|
1435
|
-
"name": "PUSHTAG"
|
|
1436
|
-
},
|
|
1437
|
-
"named": false,
|
|
1173
|
+
"type": "STRING",
|
|
1438
1174
|
"value": "pushtag"
|
|
1439
1175
|
},
|
|
1440
1176
|
{
|
|
@@ -1451,12 +1187,7 @@
|
|
|
1451
1187
|
"type": "SEQ",
|
|
1452
1188
|
"members": [
|
|
1453
1189
|
{
|
|
1454
|
-
"type": "
|
|
1455
|
-
"content": {
|
|
1456
|
-
"type": "SYMBOL",
|
|
1457
|
-
"name": "POPTAG"
|
|
1458
|
-
},
|
|
1459
|
-
"named": false,
|
|
1190
|
+
"type": "STRING",
|
|
1460
1191
|
"value": "poptag"
|
|
1461
1192
|
},
|
|
1462
1193
|
{
|
|
@@ -1473,12 +1204,7 @@
|
|
|
1473
1204
|
"type": "SEQ",
|
|
1474
1205
|
"members": [
|
|
1475
1206
|
{
|
|
1476
|
-
"type": "
|
|
1477
|
-
"content": {
|
|
1478
|
-
"type": "SYMBOL",
|
|
1479
|
-
"name": "PUSHMETA"
|
|
1480
|
-
},
|
|
1481
|
-
"named": false,
|
|
1207
|
+
"type": "STRING",
|
|
1482
1208
|
"value": "pushmeta"
|
|
1483
1209
|
},
|
|
1484
1210
|
{
|
|
@@ -1495,12 +1221,7 @@
|
|
|
1495
1221
|
"type": "SEQ",
|
|
1496
1222
|
"members": [
|
|
1497
1223
|
{
|
|
1498
|
-
"type": "
|
|
1499
|
-
"content": {
|
|
1500
|
-
"type": "SYMBOL",
|
|
1501
|
-
"name": "POPMETA"
|
|
1502
|
-
},
|
|
1503
|
-
"named": false,
|
|
1224
|
+
"type": "STRING",
|
|
1504
1225
|
"value": "popmeta"
|
|
1505
1226
|
},
|
|
1506
1227
|
{
|
|
@@ -1508,8 +1229,8 @@
|
|
|
1508
1229
|
"name": "key"
|
|
1509
1230
|
},
|
|
1510
1231
|
{
|
|
1511
|
-
"type": "
|
|
1512
|
-
"
|
|
1232
|
+
"type": "STRING",
|
|
1233
|
+
"value": ":"
|
|
1513
1234
|
},
|
|
1514
1235
|
{
|
|
1515
1236
|
"type": "SYMBOL",
|
|
@@ -1529,12 +1250,7 @@
|
|
|
1529
1250
|
}
|
|
1530
1251
|
},
|
|
1531
1252
|
{
|
|
1532
|
-
"type": "
|
|
1533
|
-
"content": {
|
|
1534
|
-
"type": "SYMBOL",
|
|
1535
|
-
"name": "OPEN"
|
|
1536
|
-
},
|
|
1537
|
-
"named": false,
|
|
1253
|
+
"type": "STRING",
|
|
1538
1254
|
"value": "open"
|
|
1539
1255
|
},
|
|
1540
1256
|
{
|
|
@@ -1551,8 +1267,29 @@
|
|
|
1551
1267
|
"content": {
|
|
1552
1268
|
"type": "REPEAT",
|
|
1553
1269
|
"content": {
|
|
1554
|
-
"type": "
|
|
1555
|
-
"
|
|
1270
|
+
"type": "SEQ",
|
|
1271
|
+
"members": [
|
|
1272
|
+
{
|
|
1273
|
+
"type": "SYMBOL",
|
|
1274
|
+
"name": "currency"
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"type": "REPEAT",
|
|
1278
|
+
"content": {
|
|
1279
|
+
"type": "SEQ",
|
|
1280
|
+
"members": [
|
|
1281
|
+
{
|
|
1282
|
+
"type": "STRING",
|
|
1283
|
+
"value": ","
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"type": "SYMBOL",
|
|
1287
|
+
"name": "currency"
|
|
1288
|
+
}
|
|
1289
|
+
]
|
|
1290
|
+
}
|
|
1291
|
+
}
|
|
1292
|
+
]
|
|
1556
1293
|
}
|
|
1557
1294
|
}
|
|
1558
1295
|
},
|
|
@@ -1597,7 +1334,7 @@
|
|
|
1597
1334
|
"members": [
|
|
1598
1335
|
{
|
|
1599
1336
|
"type": "SYMBOL",
|
|
1600
|
-
"name": "
|
|
1337
|
+
"name": "_key_value_list"
|
|
1601
1338
|
},
|
|
1602
1339
|
{
|
|
1603
1340
|
"type": "BLANK"
|
|
@@ -1622,12 +1359,7 @@
|
|
|
1622
1359
|
}
|
|
1623
1360
|
},
|
|
1624
1361
|
{
|
|
1625
|
-
"type": "
|
|
1626
|
-
"content": {
|
|
1627
|
-
"type": "SYMBOL",
|
|
1628
|
-
"name": "CLOSE"
|
|
1629
|
-
},
|
|
1630
|
-
"named": false,
|
|
1362
|
+
"type": "STRING",
|
|
1631
1363
|
"value": "close"
|
|
1632
1364
|
},
|
|
1633
1365
|
{
|
|
@@ -1663,7 +1395,7 @@
|
|
|
1663
1395
|
"members": [
|
|
1664
1396
|
{
|
|
1665
1397
|
"type": "SYMBOL",
|
|
1666
|
-
"name": "
|
|
1398
|
+
"name": "_key_value_list"
|
|
1667
1399
|
},
|
|
1668
1400
|
{
|
|
1669
1401
|
"type": "BLANK"
|
|
@@ -1684,12 +1416,7 @@
|
|
|
1684
1416
|
}
|
|
1685
1417
|
},
|
|
1686
1418
|
{
|
|
1687
|
-
"type": "
|
|
1688
|
-
"content": {
|
|
1689
|
-
"type": "SYMBOL",
|
|
1690
|
-
"name": "COMMODITY"
|
|
1691
|
-
},
|
|
1692
|
-
"named": false,
|
|
1419
|
+
"type": "STRING",
|
|
1693
1420
|
"value": "commodity"
|
|
1694
1421
|
},
|
|
1695
1422
|
{
|
|
@@ -1725,7 +1452,7 @@
|
|
|
1725
1452
|
"members": [
|
|
1726
1453
|
{
|
|
1727
1454
|
"type": "SYMBOL",
|
|
1728
|
-
"name": "
|
|
1455
|
+
"name": "_key_value_list"
|
|
1729
1456
|
},
|
|
1730
1457
|
{
|
|
1731
1458
|
"type": "BLANK"
|
|
@@ -1746,12 +1473,7 @@
|
|
|
1746
1473
|
}
|
|
1747
1474
|
},
|
|
1748
1475
|
{
|
|
1749
|
-
"type": "
|
|
1750
|
-
"content": {
|
|
1751
|
-
"type": "SYMBOL",
|
|
1752
|
-
"name": "PAD"
|
|
1753
|
-
},
|
|
1754
|
-
"named": false,
|
|
1476
|
+
"type": "STRING",
|
|
1755
1477
|
"value": "pad"
|
|
1756
1478
|
},
|
|
1757
1479
|
{
|
|
@@ -1795,7 +1517,7 @@
|
|
|
1795
1517
|
"members": [
|
|
1796
1518
|
{
|
|
1797
1519
|
"type": "SYMBOL",
|
|
1798
|
-
"name": "
|
|
1520
|
+
"name": "_key_value_list"
|
|
1799
1521
|
},
|
|
1800
1522
|
{
|
|
1801
1523
|
"type": "BLANK"
|
|
@@ -1816,12 +1538,7 @@
|
|
|
1816
1538
|
}
|
|
1817
1539
|
},
|
|
1818
1540
|
{
|
|
1819
|
-
"type": "
|
|
1820
|
-
"content": {
|
|
1821
|
-
"type": "SYMBOL",
|
|
1822
|
-
"name": "BALANCE"
|
|
1823
|
-
},
|
|
1824
|
-
"named": false,
|
|
1541
|
+
"type": "STRING",
|
|
1825
1542
|
"value": "balance"
|
|
1826
1543
|
},
|
|
1827
1544
|
{
|
|
@@ -1865,7 +1582,7 @@
|
|
|
1865
1582
|
"members": [
|
|
1866
1583
|
{
|
|
1867
1584
|
"type": "SYMBOL",
|
|
1868
|
-
"name": "
|
|
1585
|
+
"name": "_key_value_list"
|
|
1869
1586
|
},
|
|
1870
1587
|
{
|
|
1871
1588
|
"type": "BLANK"
|
|
@@ -1911,8 +1628,8 @@
|
|
|
1911
1628
|
"name": "_number_expr"
|
|
1912
1629
|
},
|
|
1913
1630
|
{
|
|
1914
|
-
"type": "
|
|
1915
|
-
"
|
|
1631
|
+
"type": "STRING",
|
|
1632
|
+
"value": "~"
|
|
1916
1633
|
},
|
|
1917
1634
|
{
|
|
1918
1635
|
"type": "SYMBOL",
|
|
@@ -2007,8 +1724,8 @@
|
|
|
2007
1724
|
}
|
|
2008
1725
|
},
|
|
2009
1726
|
{
|
|
2010
|
-
"type": "
|
|
2011
|
-
"
|
|
1727
|
+
"type": "STRING",
|
|
1728
|
+
"value": "#"
|
|
2012
1729
|
},
|
|
2013
1730
|
{
|
|
2014
1731
|
"type": "FIELD",
|
|
@@ -2058,8 +1775,8 @@
|
|
|
2058
1775
|
"type": "SEQ",
|
|
2059
1776
|
"members": [
|
|
2060
1777
|
{
|
|
2061
|
-
"type": "
|
|
2062
|
-
"
|
|
1778
|
+
"type": "STRING",
|
|
1779
|
+
"value": "{"
|
|
2063
1780
|
},
|
|
2064
1781
|
{
|
|
2065
1782
|
"type": "FIELD",
|
|
@@ -2069,7 +1786,7 @@
|
|
|
2069
1786
|
"members": [
|
|
2070
1787
|
{
|
|
2071
1788
|
"type": "SYMBOL",
|
|
2072
|
-
"name": "
|
|
1789
|
+
"name": "_cost_comp_list"
|
|
2073
1790
|
},
|
|
2074
1791
|
{
|
|
2075
1792
|
"type": "BLANK"
|
|
@@ -2078,8 +1795,8 @@
|
|
|
2078
1795
|
}
|
|
2079
1796
|
},
|
|
2080
1797
|
{
|
|
2081
|
-
"type": "
|
|
2082
|
-
"
|
|
1798
|
+
"type": "STRING",
|
|
1799
|
+
"value": "}"
|
|
2083
1800
|
}
|
|
2084
1801
|
]
|
|
2085
1802
|
},
|
|
@@ -2087,8 +1804,8 @@
|
|
|
2087
1804
|
"type": "SEQ",
|
|
2088
1805
|
"members": [
|
|
2089
1806
|
{
|
|
2090
|
-
"type": "
|
|
2091
|
-
"
|
|
1807
|
+
"type": "STRING",
|
|
1808
|
+
"value": "{{"
|
|
2092
1809
|
},
|
|
2093
1810
|
{
|
|
2094
1811
|
"type": "FIELD",
|
|
@@ -2098,7 +1815,7 @@
|
|
|
2098
1815
|
"members": [
|
|
2099
1816
|
{
|
|
2100
1817
|
"type": "SYMBOL",
|
|
2101
|
-
"name": "
|
|
1818
|
+
"name": "_cost_comp_list"
|
|
2102
1819
|
},
|
|
2103
1820
|
{
|
|
2104
1821
|
"type": "BLANK"
|
|
@@ -2107,14 +1824,14 @@
|
|
|
2107
1824
|
}
|
|
2108
1825
|
},
|
|
2109
1826
|
{
|
|
2110
|
-
"type": "
|
|
2111
|
-
"
|
|
1827
|
+
"type": "STRING",
|
|
1828
|
+
"value": "}}"
|
|
2112
1829
|
}
|
|
2113
1830
|
]
|
|
2114
1831
|
}
|
|
2115
1832
|
]
|
|
2116
1833
|
},
|
|
2117
|
-
"
|
|
1834
|
+
"_cost_comp_list": {
|
|
2118
1835
|
"type": "SEQ",
|
|
2119
1836
|
"members": [
|
|
2120
1837
|
{
|
|
@@ -2127,8 +1844,8 @@
|
|
|
2127
1844
|
"type": "SEQ",
|
|
2128
1845
|
"members": [
|
|
2129
1846
|
{
|
|
2130
|
-
"type": "
|
|
2131
|
-
"
|
|
1847
|
+
"type": "STRING",
|
|
1848
|
+
"value": ","
|
|
2132
1849
|
},
|
|
2133
1850
|
{
|
|
2134
1851
|
"type": "SYMBOL",
|
|
@@ -2155,8 +1872,8 @@
|
|
|
2155
1872
|
"name": "string"
|
|
2156
1873
|
},
|
|
2157
1874
|
{
|
|
2158
|
-
"type": "
|
|
2159
|
-
"
|
|
1875
|
+
"type": "STRING",
|
|
1876
|
+
"value": "*"
|
|
2160
1877
|
}
|
|
2161
1878
|
]
|
|
2162
1879
|
},
|
|
@@ -2172,12 +1889,7 @@
|
|
|
2172
1889
|
}
|
|
2173
1890
|
},
|
|
2174
1891
|
{
|
|
2175
|
-
"type": "
|
|
2176
|
-
"content": {
|
|
2177
|
-
"type": "SYMBOL",
|
|
2178
|
-
"name": "PRICE"
|
|
2179
|
-
},
|
|
2180
|
-
"named": false,
|
|
1892
|
+
"type": "STRING",
|
|
2181
1893
|
"value": "price"
|
|
2182
1894
|
},
|
|
2183
1895
|
{
|
|
@@ -2205,7 +1917,7 @@
|
|
|
2205
1917
|
"members": [
|
|
2206
1918
|
{
|
|
2207
1919
|
"type": "SYMBOL",
|
|
2208
|
-
"name": "
|
|
1920
|
+
"name": "_key_value_list"
|
|
2209
1921
|
},
|
|
2210
1922
|
{
|
|
2211
1923
|
"type": "BLANK"
|
|
@@ -2226,12 +1938,7 @@
|
|
|
2226
1938
|
}
|
|
2227
1939
|
},
|
|
2228
1940
|
{
|
|
2229
|
-
"type": "
|
|
2230
|
-
"content": {
|
|
2231
|
-
"type": "SYMBOL",
|
|
2232
|
-
"name": "EVENT"
|
|
2233
|
-
},
|
|
2234
|
-
"named": false,
|
|
1941
|
+
"type": "STRING",
|
|
2235
1942
|
"value": "event"
|
|
2236
1943
|
},
|
|
2237
1944
|
{
|
|
@@ -2259,7 +1966,7 @@
|
|
|
2259
1966
|
"members": [
|
|
2260
1967
|
{
|
|
2261
1968
|
"type": "SYMBOL",
|
|
2262
|
-
"name": "
|
|
1969
|
+
"name": "_key_value_list"
|
|
2263
1970
|
},
|
|
2264
1971
|
{
|
|
2265
1972
|
"type": "BLANK"
|
|
@@ -2280,12 +1987,7 @@
|
|
|
2280
1987
|
}
|
|
2281
1988
|
},
|
|
2282
1989
|
{
|
|
2283
|
-
"type": "
|
|
2284
|
-
"content": {
|
|
2285
|
-
"type": "SYMBOL",
|
|
2286
|
-
"name": "QUERY"
|
|
2287
|
-
},
|
|
2288
|
-
"named": false,
|
|
1990
|
+
"type": "STRING",
|
|
2289
1991
|
"value": "query"
|
|
2290
1992
|
},
|
|
2291
1993
|
{
|
|
@@ -2313,7 +2015,7 @@
|
|
|
2313
2015
|
"members": [
|
|
2314
2016
|
{
|
|
2315
2017
|
"type": "SYMBOL",
|
|
2316
|
-
"name": "
|
|
2018
|
+
"name": "_key_value_list"
|
|
2317
2019
|
},
|
|
2318
2020
|
{
|
|
2319
2021
|
"type": "BLANK"
|
|
@@ -2334,12 +2036,7 @@
|
|
|
2334
2036
|
}
|
|
2335
2037
|
},
|
|
2336
2038
|
{
|
|
2337
|
-
"type": "
|
|
2338
|
-
"content": {
|
|
2339
|
-
"type": "SYMBOL",
|
|
2340
|
-
"name": "NOTE"
|
|
2341
|
-
},
|
|
2342
|
-
"named": false,
|
|
2039
|
+
"type": "STRING",
|
|
2343
2040
|
"value": "note"
|
|
2344
2041
|
},
|
|
2345
2042
|
{
|
|
@@ -2367,7 +2064,7 @@
|
|
|
2367
2064
|
"members": [
|
|
2368
2065
|
{
|
|
2369
2066
|
"type": "SYMBOL",
|
|
2370
|
-
"name": "
|
|
2067
|
+
"name": "_key_value_list"
|
|
2371
2068
|
},
|
|
2372
2069
|
{
|
|
2373
2070
|
"type": "BLANK"
|
|
@@ -2392,12 +2089,7 @@
|
|
|
2392
2089
|
}
|
|
2393
2090
|
},
|
|
2394
2091
|
{
|
|
2395
|
-
"type": "
|
|
2396
|
-
"content": {
|
|
2397
|
-
"type": "SYMBOL",
|
|
2398
|
-
"name": "DOCUMENT"
|
|
2399
|
-
},
|
|
2400
|
-
"named": false,
|
|
2092
|
+
"type": "STRING",
|
|
2401
2093
|
"value": "document"
|
|
2402
2094
|
},
|
|
2403
2095
|
{
|
|
@@ -2441,7 +2133,7 @@
|
|
|
2441
2133
|
"members": [
|
|
2442
2134
|
{
|
|
2443
2135
|
"type": "SYMBOL",
|
|
2444
|
-
"name": "
|
|
2136
|
+
"name": "_key_value_list"
|
|
2445
2137
|
},
|
|
2446
2138
|
{
|
|
2447
2139
|
"type": "BLANK"
|
|
@@ -2479,13 +2171,6 @@
|
|
|
2479
2171
|
}
|
|
2480
2172
|
]
|
|
2481
2173
|
},
|
|
2482
|
-
"custom_value_list": {
|
|
2483
|
-
"type": "REPEAT1",
|
|
2484
|
-
"content": {
|
|
2485
|
-
"type": "SYMBOL",
|
|
2486
|
-
"name": "custom_value"
|
|
2487
|
-
}
|
|
2488
|
-
},
|
|
2489
2174
|
"custom": {
|
|
2490
2175
|
"type": "SEQ",
|
|
2491
2176
|
"members": [
|
|
@@ -2498,12 +2183,7 @@
|
|
|
2498
2183
|
}
|
|
2499
2184
|
},
|
|
2500
2185
|
{
|
|
2501
|
-
"type": "
|
|
2502
|
-
"content": {
|
|
2503
|
-
"type": "SYMBOL",
|
|
2504
|
-
"name": "CUSTOM"
|
|
2505
|
-
},
|
|
2506
|
-
"named": false,
|
|
2186
|
+
"type": "STRING",
|
|
2507
2187
|
"value": "custom"
|
|
2508
2188
|
},
|
|
2509
2189
|
{
|
|
@@ -2521,8 +2201,11 @@
|
|
|
2521
2201
|
"type": "CHOICE",
|
|
2522
2202
|
"members": [
|
|
2523
2203
|
{
|
|
2524
|
-
"type": "
|
|
2525
|
-
"
|
|
2204
|
+
"type": "REPEAT1",
|
|
2205
|
+
"content": {
|
|
2206
|
+
"type": "SYMBOL",
|
|
2207
|
+
"name": "custom_value"
|
|
2208
|
+
}
|
|
2526
2209
|
},
|
|
2527
2210
|
{
|
|
2528
2211
|
"type": "BLANK"
|
|
@@ -2539,7 +2222,7 @@
|
|
|
2539
2222
|
"members": [
|
|
2540
2223
|
{
|
|
2541
2224
|
"type": "SYMBOL",
|
|
2542
|
-
"name": "
|
|
2225
|
+
"name": "_key_value_list"
|
|
2543
2226
|
},
|
|
2544
2227
|
{
|
|
2545
2228
|
"type": "BLANK"
|
|
@@ -2605,12 +2288,7 @@
|
|
|
2605
2288
|
"type": "SEQ",
|
|
2606
2289
|
"members": [
|
|
2607
2290
|
{
|
|
2608
|
-
"type": "
|
|
2609
|
-
"content": {
|
|
2610
|
-
"type": "SYMBOL",
|
|
2611
|
-
"name": "OPTION"
|
|
2612
|
-
},
|
|
2613
|
-
"named": false,
|
|
2291
|
+
"type": "STRING",
|
|
2614
2292
|
"value": "option"
|
|
2615
2293
|
},
|
|
2616
2294
|
{
|
|
@@ -2639,12 +2317,7 @@
|
|
|
2639
2317
|
"type": "SEQ",
|
|
2640
2318
|
"members": [
|
|
2641
2319
|
{
|
|
2642
|
-
"type": "
|
|
2643
|
-
"content": {
|
|
2644
|
-
"type": "SYMBOL",
|
|
2645
|
-
"name": "INCLUDE"
|
|
2646
|
-
},
|
|
2647
|
-
"named": false,
|
|
2320
|
+
"type": "STRING",
|
|
2648
2321
|
"value": "include"
|
|
2649
2322
|
},
|
|
2650
2323
|
{
|
|
@@ -2664,12 +2337,7 @@
|
|
|
2664
2337
|
"type": "SEQ",
|
|
2665
2338
|
"members": [
|
|
2666
2339
|
{
|
|
2667
|
-
"type": "
|
|
2668
|
-
"content": {
|
|
2669
|
-
"type": "SYMBOL",
|
|
2670
|
-
"name": "PLUGIN"
|
|
2671
|
-
},
|
|
2672
|
-
"named": false,
|
|
2340
|
+
"type": "STRING",
|
|
2673
2341
|
"value": "plugin"
|
|
2674
2342
|
},
|
|
2675
2343
|
{
|
|
@@ -2686,12 +2354,7 @@
|
|
|
2686
2354
|
"type": "SEQ",
|
|
2687
2355
|
"members": [
|
|
2688
2356
|
{
|
|
2689
|
-
"type": "
|
|
2690
|
-
"content": {
|
|
2691
|
-
"type": "SYMBOL",
|
|
2692
|
-
"name": "PLUGIN"
|
|
2693
|
-
},
|
|
2694
|
-
"named": false,
|
|
2357
|
+
"type": "STRING",
|
|
2695
2358
|
"value": "plugin"
|
|
2696
2359
|
},
|
|
2697
2360
|
{
|
|
@@ -2775,7 +2438,7 @@
|
|
|
2775
2438
|
},
|
|
2776
2439
|
"identifier": {
|
|
2777
2440
|
"type": "PATTERN",
|
|
2778
|
-
"value": "[
|
|
2441
|
+
"value": "[a-z]+"
|
|
2779
2442
|
},
|
|
2780
2443
|
"_skipped_lines": {
|
|
2781
2444
|
"type": "CHOICE",
|
|
@@ -2801,8 +2464,8 @@
|
|
|
2801
2464
|
"type": "SEQ",
|
|
2802
2465
|
"members": [
|
|
2803
2466
|
{
|
|
2804
|
-
"type": "
|
|
2805
|
-
"
|
|
2467
|
+
"type": "STRING",
|
|
2468
|
+
"value": ":"
|
|
2806
2469
|
},
|
|
2807
2470
|
{
|
|
2808
2471
|
"type": "PATTERN",
|
|
@@ -3033,6 +2696,9 @@
|
|
|
3033
2696
|
}
|
|
3034
2697
|
],
|
|
3035
2698
|
"inline": [],
|
|
3036
|
-
"supertypes": [
|
|
2699
|
+
"supertypes": [
|
|
2700
|
+
"_entry",
|
|
2701
|
+
"_directive"
|
|
2702
|
+
]
|
|
3037
2703
|
}
|
|
3038
2704
|
|