forked from lojban/ilmentufa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
camxes.pegjs
1909 lines (1306 loc) · 94.7 KB
/
camxes.pegjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// camxes.js.peg
// Copyright (c) 2013, 2014 Masato Hagiwara
// https://github.com/mhagiwara/camxes.js
//
// camxes.js can be used, modified, and re-distributed under MIT license.
// See LICENSE for the details.
// This is a Parsing Expression Grammar for Lojban.
// See http://bford.info/packrat/
//
// All rules have the form:
//
// name = peg_expression
//
// which means that the grammatical construct "name" is parsed using
// "peg_expression".
//
// 1) Names in lower case are grammatical constructs.
// 2) Names in UPPER CASE are selma'o (lexeme) names, and are terminals.
// 3) Concatenation is expressed by juxtaposition with no operator symbol.
// 4) / represents *ORDERED* alternation (choice). If the first
// option succeeds, the others will never be checked.
// 5) ? indicates that the element to the left is optional.
// 6) * represents optional repetition of the construct to the left.
// 7) + represents one_or_more repetition of the construct to the left.
// 8) () serves to indicate the grouping of the other operators.
//
// Longest match wins.
// How to compile using Node.js: (Added by Masato Hagiwara)
// // load peg.js and the file system module
// > var PEG = require("pegjs")
// > var fs = require("fs")
// // read peg and build a parser
// > var camxes_peg = fs.readFileSync("/path/to/camxes.js.peg").toString();
// > var camxes = PEG.buildParser(camxes_peg, {cache: true});
// // test it
// > camxes.parse("ko'a broda");
// [ 'text',
// [ 'text_1',
// [ 'paragraphs', [Object] ] ] ]
// // write to a file
// > fs.writeFileSync("/path/to/camxes.js", camxes.toSource());
// ___ GRAMMAR ___
{
var _g_zoi_delim;
function _join(arg) {
if (typeof(arg) == "string")
return arg;
else if (arg) {
var ret = "";
for (var v in arg) { if (arg[v]) ret += _join(arg[v]); }
return ret;
}
}
function _node_empty(label, arg) {
var ret = [];
if (label) ret.push(label);
if (arg && typeof arg == "object" && typeof arg[0] == "string" && arg[0]) {
ret.push( arg );
return ret;
}
if (!arg)
{
return ret;
}
return _node_int(label, arg);
}
function _node_int(label, arg) {
if (typeof arg == "string")
return arg;
if (!arg) arg = [];
var ret = [];
if (label) ret.push(label);
for (var v in arg) {
if (arg[v] && arg[v].length != 0)
ret.push( _node_int( null, arg[v] ) );
}
return ret;
}
function _node2(label, arg1, arg2) {
return [label].concat(_node_empty(arg1)).concat(_node_empty(arg2));
}
function _node(label, arg) {
var _n = _node_empty(label, arg);
return (_n.length == 1 && label) ? [] : _n;
}
var _node_nonempty = _node;
// === Functions for faking left recursion === //
function _flatten_node(a) {
// Flatten nameless nodes
// e.g. [Name1, [[Name2, X], [Name3, Y]]] --> [Name1, [Name2, X], [Name3, Y]]
if (is_array(a)) {
var i = 0;
while (i < a.length) {
if (!is_array(a[i])) i++;
else if (a[i].length === 0) // Removing []s
a = a.slice(0, i).concat(a.slice(i + 1));
else if (is_array(a[i][0]))
a = a.slice(0, i).concat(a[i], a.slice(i + 1));
else i++;
}
}
return a;
}
function _group_leftwise(arr) {
if (!is_array(arr)) return [];
else if (arr.length <= 2) return arr;
else return [_group_leftwise(arr.slice(0, -1)), arr[arr.length - 1]];
}
// "_lg" for "Leftwise Grouping".
function _node_lg(label, arg) {
return _node(label, _group_leftwise(_flatten_node(arg)));
}
function _node_lg2(label, arg) {
if (is_array(arg) && arg.length == 2)
arg = arg[0].concat(arg[1]);
return _node(label, _group_leftwise(arg));
}
// === ZOI functions === //
function _assign_zoi_delim(w) {
if (is_array(w)) w = join_expr(w);
else if (!is_string(w)) throw "ERROR: ZOI word is of type" + typeof w;
w = w.toLowerCase().replace(/,/gm,"").replace(/h/g, "'");
_g_zoi_delim = w;
return;
}
function _is_zoi_delim(w) {
if (is_array(w)) w = join_expr(w);
else if (!is_string(w)) throw "ERROR: ZOI word is of type" + typeof w;
/* Keeping spaces in the parse tree seems to result in the absorbtion of
spaces into the closing delimiter candidate, so we'll remove any space
character from our input. */
w = w.replace(/[.\t\n\r?!\u0020]/g, "");
w = w.toLowerCase().replace(/,/gm,"").replace(/h/g, "'");
return w === _g_zoi_delim;
}
function join_expr(n) {
if (!is_array(n) || n.length < 1) return "";
var s = "";
var i = is_array(n[0]) ? 0 : 1;
while (i < n.length) {
s += is_string(n[i]) ? n[i] : join_expr(n[i]);
i++;
}
return s;
}
function is_string(v) {
// return $.type(v) === "string";
return Object.prototype.toString.call(v) === '[object String]';
}
function is_array(v) {
// return $.type(v) === "array";
return Object.prototype.toString.call(v) === '[object Array]';
}
}
text = expr:(intro_null NAI_clause* text_part_2 (!gek joik_jek)? text_1? faho_clause EOF?) {return _node("text", expr);}
intro_null = expr:(initial_spaces? su_clause* intro_si_clause) {return _node("intro_null", expr);}
text_part_2 = expr:((CMEVLA_clause+ / indicators?) free*) {return _node("text_part_2", expr);}
//; intro_sa_clause = SA_clause+ / any_word_SA_handling !(ZEI_clause SA_clause) intro_sa_clause
intro_si_clause = expr:(si_clause? SI_clause*) {return _node("intro_si_clause", expr);}
faho_clause = expr:((FAhO_clause dot_star)?) {return _node("faho_clause", expr);}
// Please note that the "text_1" item in the text_1 production does
// *not* match the BNF. This is due to a bug in the BNF. The change
// here was made to match grammar.300
text_1 = expr:(I_clause (jek / joik)? (stag? BO_clause)? free* text_1? / NIhO_clause+ free* su_clause* paragraphs? / paragraphs) {return _node("text_1", expr);}
paragraphs = expr:(paragraph? (NIhO_clause+ free* su_clause* paragraphs)?) {return _node("paragraphs", expr);}
paragraph = expr:((statement / fragment) (I_clause !jek !joik !joik_jek free* (statement / fragment)?)*) {return _node("paragraph", expr);}
statement = expr:(statement_1 / prenex statement) {return _node("statement", expr);}
statement_1 = expr:(statement_2 (I_clause joik_jek statement_2?)*) {return _node("statement_1", expr);}
statement_2 = expr:(statement_3 (I_clause (jek / joik)? stag? BO_clause free* statement_2?)?) {return _node("statement_2", expr);}
statement_3 = expr:(sentence / tag? TUhE_clause free* text_1 TUhU_elidible free*) {return _node("statement_3", expr);}
fragment = expr:(prenex / terms VAU_elidible free* / ek free* / gihek free* / quantifier / NA_clause !JA_clause free* / relative_clauses / links / linkargs) {return _node("fragment", expr);}
prenex = expr:(terms ZOhU_clause free*) {return _node("prenex", expr);}
//; sentence = (terms CU_clause? free*)? bridi_tail / bridi_tail
sentence = expr:((terms bridi_tail_sa* CU_elidible free*)? bridi_tail_sa* bridi_tail) {return _node("sentence", expr);}
sentence_sa = expr:(sentence_start (!sentence_start (sa_word / SA_clause !sentence_start ) )* SA_clause &text_1) {return _node("sentence_sa", expr);}
sentence_start = expr:(I_pre / NIhO_pre) {return _node("sentence_start", expr);}
subsentence = expr:(sentence / prenex subsentence) {return _node("subsentence", expr);}
bridi_tail = expr:(bridi_tail_1 (gihek stag? KE_clause free* bridi_tail KEhE_elidible free* tail_terms)?) {return _node("bridi_tail", expr);}
bridi_tail_sa = expr:(bridi_tail_start (term / !bridi_tail_start (sa_word / SA_clause !bridi_tail_start ) )* SA_clause &bridi_tail) {return _node("bridi_tail_sa", expr);}
bridi_tail_start = expr:(ME_clause / NUhA_clause / NU_clause / NA_clause !KU_clause / NAhE_clause !BO_clause / selbri / tag bridi_tail_start / KE_clause bridi_tail_start / bridi_tail) {return _node("bridi_tail_start", expr);}
bridi_tail_1 = expr:(bridi_tail_2 (gihek !(stag? BO_clause) !(stag? KE_clause) free* bridi_tail_2 tail_terms)*) {return _node_lg2("bridi_tail_1", expr);} // !LR2
bridi_tail_2 = expr:(bridi_tail_3 (gihek stag? BO_clause free* bridi_tail_2 tail_terms)?) {return _node("bridi_tail_2", expr);}
bridi_tail_3 = expr:(selbri tail_terms / gek_sentence) {return _node("bridi_tail_3", expr);}
gek_sentence = expr:(gek subsentence gik subsentence tail_terms / tag* KE_clause free* gek_sentence KEhE_elidible free* / NA_clause free* gek_sentence) {return _node("gek_sentence", expr);}
tail_terms = expr:(terms? VAU_elidible free*) {return _node("tail_terms", expr);}
terms = expr:(terms_1+) {return _node("terms", expr);}
//; terms_1 = terms_2 (PEhE_clause free* joik_jek terms_2)*
//; terms_2 = term (CEhE_clause free* term)*
terms_1 = expr:(terms_2 (pehe_sa* PEhE_clause free* joik_jek terms_2)*) {return _node("terms_1", expr);}
terms_2 = expr:(term (cehe_sa* CEhE_clause free* nonabs_term)*) {return _node("terms_2", expr);}
pehe_sa = expr:(PEhE_clause (!PEhE_clause (sa_word / SA_clause !PEhE_clause))* SA_clause) {return _node("pehe_sa", expr);}
cehe_sa = expr:(CEhE_clause (!CEhE_clause (sa_word / SA_clause !CEhE_clause))* SA_clause) {return _node("cehe_sa", expr);}
//;term = sumti / ( !gek (tag / FA_clause free*) (sumti / KU_elidible free*) ) / termset / NA_clause KU_clause free*
term = expr:(term_sa* term_1) {return _node("term", expr);}
term_1 = expr:(sumti / ( !gek (tag !(!tag selbri) / FA_clause free*) (sumti / KU_elidible free*) ) / termset / NA_clause KU_clause free*) {return _node("term_1", expr);}
nonabs_term = expr:(term_sa* (sumti / ( !gek (tag / FA_clause free*) (sumti / KU_elidible free*) ) / termset / NA_clause KU_clause free*)) {return _node("nonabs_term", expr);}
term_sa = expr:(term_start (!term_start (sa_word / SA_clause !term_start ) )* SA_clause &term_1) {return _node("term_sa", expr);}
term_start = expr:(term_1 / LA_clause / LE_clause / LI_clause / LU_clause / LAhE_clause / quantifier term_start / gek sumti gik / FA_clause / tag term_start) {return _node("term_start", expr);}
termset = expr:(gek_termset / NUhI_clause free* gek terms NUhU_elidible free* gik terms NUhU_elidible free* / NUhI_clause free* terms NUhU_elidible free*) {return _node("termset", expr);}
gek_termset = expr:(gek terms_gik_terms) {return _node("gek_termset", expr);}
terms_gik_terms = expr:(nonabs_term (gik / terms_gik_terms) nonabs_term) {return _node("terms_gik_terms", expr);}
sumti = expr:(sumti_1 (VUhO_clause free* relative_clauses)?) {return _node("sumti", expr);}
sumti_1 = expr:(sumti_2 (joik_ek stag? KE_clause free* sumti KEhE_elidible free*)?) {return _node("sumti_1", expr);}
sumti_2 = expr:(sumti_3 (joik_ek sumti_3)*) {return _node_lg2("sumti_2", expr);} // !LR2
sumti_3 = expr:(sumti_4 (joik_ek stag? BO_clause free* sumti_3)?) {return _node("sumti_3", expr);}
sumti_4 = expr:(sumti_5 / gek sumti gik sumti_4) {return _node("sumti_4", expr);}
sumti_5 = expr:(quantifier? sumti_6 relative_clauses? / quantifier selbri KU_elidible free* relative_clauses?) {return _node("sumti_5", expr);}
sumti_6 = expr:(ZO_clause free* / ZOI_clause free* / LOhU_clause free* / lerfu_string !MOI_clause BOI_elidible free* / LU_clause text LIhU_elidible free* / (LAhE_clause free* / NAhE_clause BO_clause free*) relative_clauses? sumti LUhU_elidible free* / KOhA_clause free* / LA_clause free* relative_clauses? CMEVLA_clause+ free* / (LA_clause / LE_clause) free* sumti_tail KU_elidible free* / li_clause) {return _node("sumti_6", expr);}
li_clause = expr:(LI_clause free* mex LOhO_elidible free*) {return _node("li_clause", expr);}
sumti_tail = expr:((sumti_6 relative_clauses?)? sumti_tail_1 / relative_clauses sumti_tail_1) {return _node("sumti_tail", expr);}
sumti_tail_1 = expr:(selbri relative_clauses? / quantifier selbri relative_clauses? / quantifier sumti) {return _node("sumti_tail_1", expr);}
relative_clauses = expr:(relative_clause (ZIhE_clause free* relative_clause)*) {return _node("relative_clauses", expr);}
//; relative_clause = GOI_clause free* term GEhU_clause? free* / NOI_clause free* subsentence KUhO_clause? free*
relative_clause = expr:(relative_clause_sa* relative_clause_1) {return _node("relative_clause", expr);}
relative_clause_sa = expr:(relative_clause_start (!relative_clause_start (sa_word / SA_clause !relative_clause_start ) )* SA_clause &relative_clause_1) {return _node("relative_clause_sa", expr);}
relative_clause_1 = expr:(GOI_clause free* nonabs_term GEhU_elidible free* / NOI_clause free* subsentence KUhO_elidible free*) {return _node("relative_clause_1", expr);}
relative_clause_start = expr:(GOI_clause / NOI_clause) {return _node("relative_clause_start", expr);}
selbri = expr:(tag? selbri_1) {return _node("selbri", expr);}
selbri_1 = expr:(selbri_2 / NA_clause free* selbri) {return _node("selbri_1", expr);}
selbri_2 = expr:(selbri_3 (CO_clause free* selbri_2)?) {return _node("selbri_2", expr);}
selbri_3 = expr:(selbri_4+) {return _node_lg("selbri_3", expr);} // !LR
selbri_4 = expr:(selbri_5 (joik_jek selbri_5 / joik stag? KE_clause free* selbri_3 KEhE_elidible free*)*) {return _node_lg2("selbri_4", expr);} // !LR2
selbri_5 = expr:(selbri_6 ((jek / joik) stag? BO_clause free* selbri_5)?) {return _node("selbri_5", expr);}
selbri_6 = expr:(tanru_unit (BO_clause free* selbri_6)? / NAhE_clause? free* guhek selbri gik selbri_6) {return _node("selbri_6", expr);}
tanru_unit = expr:(tanru_unit_1 (CEI_clause free* tanru_unit_1)*) {return _node("tanru_unit", expr);}
tanru_unit_1 = expr:(tanru_unit_2 linkargs?) {return _node("tanru_unit_1", expr);}
// ** zei is part of BRIVLA_clause
tanru_unit_2 = expr:(BRIVLA_clause free* / GOhA_clause RAhO_clause? free* / KE_clause free* selbri_3 KEhE_elidible free* / ME_clause free* (sumti / lerfu_string) MEhU_elidible free* MOI_clause? free* / (number / lerfu_string) MOI_clause free* / NUhA_clause free* mex_operator / SE_clause free* tanru_unit_2 / JAI_clause free* tag? tanru_unit_2 / NAhE_clause free* tanru_unit_2 / NU_clause NAI_clause? free* (joik_jek NU_clause NAI_clause? free*)* subsentence KEI_elidible free*) {return _node("tanru_unit_2", expr);}
//; linkargs = BE_clause free* term links? BEhO_clause? free*
linkargs = expr:(linkargs_sa* linkargs_1) {return _node("linkargs", expr);}
linkargs_1 = expr:(BE_clause free* nonabs_term links? BEhO_elidible free*) {return _node("linkargs_1", expr);}
linkargs_sa = expr:(linkargs_start (!linkargs_start (sa_word / SA_clause !linkargs_start ) )* SA_clause &linkargs_1) {return _node("linkargs_sa", expr);}
linkargs_start = expr:(BE_clause) {return _node("linkargs_start", expr);}
//; links = BEI_clause free* term links?
links = expr:(links_sa* links_1) {return _node("links", expr);}
links_1 = expr:(BEI_clause free* nonabs_term links?) {return _node("links_1", expr);}
links_sa = expr:(links_start (!links_start (sa_word / SA_clause !links_start ) )* SA_clause &links_1) {return _node("links_sa", expr);}
links_start = expr:(BEI_clause) {return _node("links_start", expr);}
quantifier = expr:(number !MOI_clause BOI_elidible free* / VEI_clause free* mex VEhO_elidible free*) {return _node("quantifier", expr);}
//;mex = mex_1 (operator mex_1)* / rp_clause
mex = expr:(mex_sa* mex_0) {return _node("mex", expr);}
mex_0 = expr:(mex_1 (operator mex_1)* / rp_clause) {return _node("mex_0", expr);}
mex_sa = expr:(mex_start (!mex_start (sa_word / SA_clause !mex_start) )* SA_clause &mex_0) {return _node("mex_sa", expr);}
mex_start = expr:(FUhA_clause / PEhO_clause / operand_start) {return _node("mex_start", expr);}
rp_clause = expr:(FUhA_clause free* rp_expression) {return _node("rp_clause", expr);}
mex_1 = expr:(mex_2 (BIhE_clause free* operator mex_1)?) {return _node("mex_1", expr);}
mex_2 = expr:(operand / mex_forethought) {return _node("mex_2", expr);}
// This is just to make for clearer parse trees
mex_forethought = expr:(PEhO_clause? free* operator fore_operands KUhE_elidible free*) {return _node("mex_forethought", expr);}
fore_operands = expr:(mex_2+) {return _node("fore_operands", expr);}
//li fu'a reboi ci pi'i voboi mu pi'i su'i reboi ci vu'u su'i du li rexa
//rp_expression = rp_operand rp_operand operator
//rp_operand = operand / rp_expression
// AKA (almost; this one allows a single operand; above does not.
//rp_expression = rp_expression rp_expression operator / operand
// Right recursive version.
rp_expression = expr:(operand rp_expression_tail) {return _node("rp_expression", expr);}
rp_expression_tail = expr:(rp_expression operator rp_expression_tail / "") {return _node("rp_expression_tail", expr);}
//; operator = operator_1 (joik_jek operator_1 / joik stag? KE_clause free* operator KEhE_clause? free*)*
operator = expr:(operator_sa* operator_0) {return _node("operator", expr);}
operator_0 = expr:(operator_1 (joik_jek operator_1 / joik stag? KE_clause free* operator KEhE_elidible free*)*) {return _node("operator_0", expr);}
operator_sa = expr:(operator_start (!operator_start (sa_word / SA_clause !operator_start) )* SA_clause &operator_0) {return _node("operator_sa", expr);}
operator_start = expr:(guhek / KE_clause / SE_clause? NAhE_clause / SE_clause? MAhO_clause / SE_clause? VUhU_clause) {return _node("operator_start", expr);}
operator_1 = expr:(operator_2 / guhek operator_1 gik operator_2 / operator_2 (jek / joik) stag? BO_clause free* operator_1) {return _node("operator_1", expr);}
operator_2 = expr:(mex_operator / KE_clause free* operator KEhE_elidible free*) {return _node("operator_2", expr);}
mex_operator = expr:(SE_clause free* mex_operator / NAhE_clause free* mex_operator / MAhO_clause free* mex TEhU_elidible free* / NAhU_clause free* selbri TEhU_elidible free* / VUhU_clause free*) {return _node("mex_operator", expr);}
//; operand = operand_1 (joik_ek stag? KE_clause free* operand KEhE_clause? free*)?
operand = expr:(operand_sa* operand_0) {return _node("operand", expr);}
operand_0 = expr:(operand_1 (joik_ek stag? KE_clause free* operand KEhE_elidible free*)?) {return _node("operand_0", expr);}
operand_sa = expr:(operand_start (!operand_start (sa_word / SA_clause !operand_start) )* SA_clause &operand_0) {return _node("operand_sa", expr);}
operand_start = expr:(quantifier / lerfu_word / NIhE_clause / MOhE_clause / JOhI_clause / gek / LAhE_clause / NAhE_clause) {return _node("operand_start", expr);}
operand_1 = expr:(operand_2 (joik_ek operand_2)*) {return _node("operand_1", expr);}
operand_2 = expr:(operand_3 (joik_ek stag? BO_clause free* operand_2)?) {return _node("operand_2", expr);}
operand_3 = expr:(quantifier / lerfu_string !MOI_clause BOI_elidible free* / NIhE_clause free* selbri TEhU_elidible free* / MOhE_clause free* sumti TEhU_elidible free* / JOhI_clause free* mex_2+ TEhU_elidible free* / gek operand gik operand_3 / (LAhE_clause free* / NAhE_clause BO_clause free*) operand LUhU_elidible free*) {return _node("operand_3", expr);}
number = expr:(PA_clause (PA_clause / lerfu_word)*) {return _node("number", expr);}
lerfu_string = expr:(lerfu_word (PA_clause / lerfu_word)*) {return _node("lerfu_string", expr);}
// ** BU clauses are part of BY_clause
lerfu_word = expr:(BY_clause / LAU_clause lerfu_word / TEI_clause lerfu_string FOI_clause) {return _node("lerfu_word", expr);}
ek = expr:(NA_clause? SE_clause? A_clause NAI_clause?) {return _node("ek", expr);}
//; gihek = NA_clause? SE_clause? GIhA_clause NAI_clause?
gihek = expr:(gihek_sa* gihek_1) {return _node("gihek", expr);}
gihek_1 = expr:(NA_clause? SE_clause? GIhA_clause NAI_clause?) {return _node("gihek_1", expr);}
gihek_sa = expr:(gihek_1 (!gihek_1 (sa_word / SA_clause !gihek_1 ) )* SA_clause &gihek) {return _node("gihek_sa", expr);}
jek = expr:(NA_clause? SE_clause? JA_clause NAI_clause?) {return _node("jek", expr);}
joik = expr:(SE_clause? JOI_clause NAI_clause? / interval / GAhO_clause interval GAhO_clause) {return _node("joik", expr);}
interval = expr:(SE_clause? BIhI_clause NAI_clause?) {return _node("interval", expr);}
//; joik_ek = joik free* / ek free*
joik_ek = expr:(joik_ek_sa* joik_ek_1) {return _node("joik_ek", expr);}
joik_ek_1 = expr:(joik free* / ek free*) {return _node("joik_ek_1", expr);}
joik_ek_sa = expr:(joik_ek_1 (!joik_ek_1 (sa_word / SA_clause !joik_ek_1 ) )* SA_clause &joik_ek) {return _node("joik_ek_sa", expr);}
joik_jek = expr:(joik free* / jek free*) {return _node("joik_jek", expr);}
gek = expr:(SE_clause? GA_clause NAI_clause? free* / joik GI_clause free* / stag gik) {return _node("gek", expr);}
guhek = expr:(SE_clause? GUhA_clause NAI_clause? free*) {return _node("guhek", expr);}
gik = expr:(GI_clause NAI_clause? free*) {return _node("gik", expr);}
tag = expr:(tense_modal (joik_jek tense_modal)*) {return _node("tag", expr);}
//stag = simple_tense_modal ((jek / joik) simple_tense_modal)*
stag = expr:(simple_tense_modal ((jek / joik) simple_tense_modal)* / tense_modal (joik_jek tense_modal)*) {return _node("stag", expr);}
tense_modal = expr:(simple_tense_modal free* / FIhO_clause free* selbri FEhU_elidible free*) {return _node("tense_modal", expr);}
simple_tense_modal = expr:(NAhE_clause? SE_clause? BAI_clause NAI_clause? KI_clause? / NAhE_clause? ( ((time space? / space time?) CAhA_clause) / (time space? / space time?) / CAhA_clause ) KI_clause? / KI_clause / CUhE_clause) {return _node("simple_tense_modal", expr);}
time = expr:(ZI_clause time_offset* (ZEhA_clause (PU_clause NAI_clause?)?)? interval_property* / ZI_clause? time_offset+ (ZEhA_clause (PU_clause NAI_clause?)?)? interval_property* / ZI_clause? time_offset* ZEhA_clause (PU_clause NAI_clause?)? interval_property* / ZI_clause? time_offset* (ZEhA_clause (PU_clause NAI_clause?)?)? interval_property+) {return _node("time", expr);}
time_offset = expr:(PU_clause NAI_clause? ZI_clause?) {return _node("time_offset", expr);}
space = expr:(VA_clause space_offset* space_interval? (MOhI_clause space_offset)? / VA_clause? space_offset+ space_interval? (MOhI_clause space_offset)? / VA_clause? space_offset* space_interval (MOhI_clause space_offset)? / VA_clause? space_offset* space_interval? MOhI_clause space_offset) {return _node("space", expr);}
space_offset = expr:(FAhA_clause NAI_clause? VA_clause?) {return _node("space_offset", expr);}
space_interval = expr:((VEhA_clause VIhA_clause? / VIhA_clause) (FAhA_clause NAI_clause?)? space_int_props? / space_int_props) {return _node("space_interval", expr);}
space_int_props = expr:((FEhE_clause interval_property)+) {return _node("space_int_props", expr);}
interval_property = expr:(number ROI_clause NAI_clause? / TAhE_clause NAI_clause? / ZAhO_clause NAI_clause?) {return _node("interval_property", expr);}
free = expr:(SEI_clause free* (terms CU_elidible free*)? selbri SEhU_elidible / SOI_clause free* sumti sumti? SEhU_elidible / vocative relative_clauses? selbri relative_clauses? DOhU_elidible / vocative relative_clauses? CMEVLA_clause+ free* relative_clauses? DOhU_elidible / vocative sumti? DOhU_elidible / (number / lerfu_string) MAI_clause / TO_clause text TOI_elidible / xi_clause) {return _node("free", expr);}
xi_clause = expr:(XI_clause free* (number / lerfu_string) BOI_elidible / XI_clause free* VEI_clause free* mex VEhO_elidible) {return _node("xi_clause", expr);}
vocative = expr:((COI_clause NAI_clause?)+ DOI_clause / (COI_clause NAI_clause?) (COI_clause NAI_clause?)* / DOI_clause) {return _node("vocative", expr);}
indicators = expr:(FUhE_clause? indicator+) {return _node("indicators", expr);}
indicator = expr:(((UI_clause / CAI_clause) NAI_clause? / DAhO_clause / FUhO_clause) !BU_clause) {return _node("indicator", expr);}
// ****************
// Magic Words
// ****************
zei_clause = expr:(pre_clause zei_clause_no_pre) {return _node("zei_clause", expr);}
zei_clause_no_pre = expr:(pre_zei_bu (zei_tail? BU_clause+)* zei_tail post_clause) {return _node_lg("zei_clause_no_pre", expr);} // !LR
// zei_clause_no_SA = pre_zei_bu_no_SA (zei_tail? bu_tail)* zei_tail
bu_clause = expr:(pre_clause bu_clause_no_pre) {return _node("bu_clause", expr);}
bu_clause_no_pre = expr:(pre_zei_bu (BU_clause* zei_tail)* BU_clause+ post_clause) {return _node_lg("bu_clause_no_pre", expr);} // !LR
// bu_clause_no_SA = pre_zei_bu_no_SA (bu_tail? zei_tail)* bu_tail
zei_tail = expr:((ZEI_clause any_word)+) {return _node("zei_tail", expr);}
bu_tail = expr:(BU_clause+) {return _node("bu_tail", expr);} // Obsolete: please use BU_clause+ instead for allowing later left-grouping faking.
pre_zei_bu = expr:(!ZOI_start !BU_clause !ZEI_clause !SI_clause !SA_clause !SU_clause !FAhO_clause any_word_SA_handling si_clause?) {return _node("pre_zei_bu", expr);}
// LOhU_pre / ZO_pre / ZOI_pre / !ZEI_clause !BU_clause !FAhO_clause !SI_clause !SA_clause !SU_clause any_word_SA_handling si_clause?
// pre_zei_bu_no_SA = LOhU_pre / ZO_pre / ZOI_pre / !ZEI_clause !BU_clause !FAhO_clause !SI_clause !SA_clause !SU_clause any_word si_clause?
dot_star = expr:(.*) {return ["dot_star", _join(expr)];}
// __ General Morphology Issues
//
// 1. Spaces (including '.y') and UI are eaten *after* a word.
//
// 3. BAhE is eaten *before* a word.
// Handling of what can go after a cmavo
post_clause = expr:(spaces? si_clause? !ZEI_clause !BU_clause indicators*) {return _node("post_clause", expr);}
pre_clause = expr:(BAhE_clause*) {return _node_lg("pre_clause", expr);} // !LR
//any_word_SA_handling = BRIVLA_pre / known_cmavo_SA / !known_cmavo_pre CMAVO_pre / CMEVLA_pre
any_word_SA_handling = expr:(BRIVLA_pre / known_cmavo_SA / CMAVO_pre / CMEVLA_pre) {return _node("any_word_SA_handling", expr);}
known_cmavo_SA = expr:(A_pre / BAI_pre / BAhE_pre / BE_pre / BEI_pre / BEhO_pre / BIhE_pre / BIhI_pre / BO_pre / BOI_pre / BU_pre / BY_pre / CAI_pre / CAhA_pre / CEI_pre / CEhE_pre / CO_pre / COI_pre / CU_pre / CUhE_pre / DAhO_pre / DOI_pre / DOhU_pre / FA_pre / FAhA_pre / FEhE_pre / FEhU_pre / FIhO_pre / FOI_pre / FUhA_pre / FUhE_pre / FUhO_pre / GA_pre / GAhO_pre / GEhU_pre / GI_pre / GIhA_pre / GOI_pre / GOhA_pre / GUhA_pre / I_pre / JA_pre / JAI_pre / JOI_pre / JOhI_pre / KE_pre / KEI_pre / KEhE_pre / KI_pre / KOhA_pre / KU_pre / KUhE_pre / KUhO_pre / LA_pre / LAU_pre / LAhE_pre / LE_pre / LEhU_pre / LI_pre / LIhU_pre / LOhO_pre / LOhU_pre / LU_pre / LUhU_pre / MAI_pre / MAhO_pre / ME_pre / MEhU_pre / MOI_pre / MOhE_pre / MOhI_pre / NA_pre / NAI_pre / NAhE_pre / NAhU_pre / NIhE_pre / NIhO_pre / NOI_pre / NU_pre / NUhA_pre / NUhI_pre / NUhU_pre / PA_pre / PEhE_pre / PEhO_pre / PU_pre / RAhO_pre / ROI_pre / SA_pre / SE_pre / SEI_pre / SEhU_pre / SI_clause / SOI_pre / SU_pre / TAhE_pre / TEI_pre / TEhU_pre / TO_pre / TOI_pre / TUhE_pre / TUhU_pre / UI_pre / VA_pre / VAU_pre / VEI_pre / VEhA_pre / VEhO_pre / VIhA_pre / VUhO_pre / VUhU_pre / XI_pre / ZAhO_pre / ZEI_pre / ZEhA_pre / ZI_pre / ZIhE_pre / ZO_pre / ZOI_pre / ZOhU_pre) {return _node("known_cmavo_SA", expr);}
// Handling of spaces and things like spaces.
// ___ SPACE ___
// Do *NOT* delete the line above!
// SU clauses
su_clause = expr:((erasable_clause / su_word)* SU_clause) {return _node("su_clause", expr);}
// Handling of SI and interactions with zo and lo'u...le'u
si_clause = expr:(((erasable_clause / si_word / SA_clause) si_clause? SI_clause)+) {return _node("si_clause", expr);}
erasable_clause = expr:(bu_clause_no_pre !ZEI_clause !BU_clause / zei_clause_no_pre !ZEI_clause !BU_clause) {return _node("erasable_clause", expr);}
sa_word = expr:(pre_zei_bu) {return _node("sa_word", expr);}
si_word = expr:(pre_zei_bu) {return _node("si_word", expr);}
su_word = expr:(!ZOI_start !NIhO_clause !LU_clause !TUhE_clause !TO_clause !SU_clause !FAhO_clause any_word_SA_handling) {return _node("su_word", expr);}
// ___ ELIDIBLE TERMINATORS ___
BEhO_elidible = expr:(BEhO_clause?) {return (expr == "" || !expr) ? ["BEhO"] : _node_empty("BEhO_elidible", expr);}
BOI_elidible = expr:(BOI_clause?) {return (expr == "" || !expr) ? ["BOI"] : _node_empty("BOI_elidible", expr);}
CU_elidible = expr:(CU_clause?) {return (expr == "" || !expr) ? ["CU"] : _node_empty("CU_elidible", expr);}
DOhU_elidible = expr:(DOhU_clause?) {return (expr == "" || !expr) ? ["DOhU"] : _node_empty("DOhU_elidible", expr);}
FEhU_elidible = expr:(FEhU_clause?) {return (expr == "" || !expr) ? ["FEhU"] : _node_empty("FEhU_elidible", expr);}
// FOI and FUhO are never elidible
GEhU_elidible = expr:(GEhU_clause?) {return (expr == "" || !expr) ? ["GEhU"] : _node_empty("GEhU_elidible", expr);}
KEI_elidible = expr:(KEI_clause?) {return (expr == "" || !expr) ? ["KEI"] : _node_empty("KEI_elidible", expr);}
KEhE_elidible = expr:(KEhE_clause?) {return (expr == "" || !expr) ? ["KEhE"] : _node_empty("KEhE_elidible", expr);}
KU_elidible = expr:(KU_clause?) {return (expr == "" || !expr) ? ["KU"] : _node_empty("KU_elidible", expr);}
KUhE_elidible = expr:(KUhE_clause?) {return (expr == "" || !expr) ? ["KUhE"] : _node_empty("KUhE_elidible", expr);}
KUhO_elidible = expr:(KUhO_clause?) {return (expr == "" || !expr) ? ["KUhO"] : _node_empty("KUhO_elidible", expr);}
// LEhU is never elidible
LIhU_elidible = expr:(LIhU_clause?) {return (expr == "" || !expr) ? ["LIhU"] : _node_empty("LIhU_elidible", expr);}
LOhO_elidible = expr:(LOhO_clause?) {return (expr == "" || !expr) ? ["LOhO"] : _node_empty("LOhO_elidible", expr);}
LUhU_elidible = expr:(LUhU_clause?) {return (expr == "" || !expr) ? ["LUhU"] : _node_empty("LUhU_elidible", expr);}
MEhU_elidible = expr:(MEhU_clause?) {return (expr == "" || !expr) ? ["MEhU"] : _node_empty("MEhU_elidible", expr);}
NUhU_elidible = expr:(NUhU_clause?) {return (expr == "" || !expr) ? ["NUhU"] : _node_empty("NUhU_elidible", expr);}
SEhU_elidible = expr:(SEhU_clause?) {return (expr == "" || !expr) ? ["SEhU"] : _node_empty("SEhU_elidible", expr);}
TEhU_elidible = expr:(TEhU_clause?) {return (expr == "" || !expr) ? ["TEhU"] : _node_empty("TEhU_elidible", expr);}
TOI_elidible = expr:(TOI_clause?) {return (expr == "" || !expr) ? ["TOI"] : _node_empty("TOI_elidible", expr);}
TUhU_elidible = expr:(TUhU_clause?) {return (expr == "" || !expr) ? ["TUhU"] : _node_empty("TUhU_elidible", expr);}
VAU_elidible = expr:(VAU_clause?) {return (expr == "" || !expr) ? ["VAU"] : _node_empty("VAU_elidible", expr);}
VEhO_elidible = expr:(VEhO_clause?) {return (expr == "" || !expr) ? ["VEhO"] : _node_empty("VEhO_elidible", expr);}
// ___ SELMAHO ___
// Do *NOT* delete the line above!
BRIVLA_clause = expr:(BRIVLA_pre BRIVLA_post / zei_clause) {return _node("BRIVLA_clause", expr);}
BRIVLA_pre = expr:(pre_clause BRIVLA spaces?) {return _node("BRIVLA_pre", expr);}
BRIVLA_post = expr:(post_clause) {return _node("BRIVLA_post", expr);}
// BRIVLA_no_SA_handling = pre_clause BRIVLA post_clause / zei_clause_no_SA
CMEVLA_clause = expr:(CMEVLA_pre CMEVLA_post) {return _node("CMEVLA_clause", expr);}
CMEVLA_pre = expr:(pre_clause CMEVLA spaces?) {return _node("CMEVLA_pre", expr);}
CMEVLA_post = expr:(post_clause) {return _node("CMEVLA_post", expr);}
// CMEVLA_no_SA_handling = pre_clause CMEVLA post_clause
CMAVO_clause = expr:(CMAVO_pre CMAVO_post) {return _node("CMAVO_clause", expr);}
CMAVO_pre = expr:(pre_clause CMAVO spaces?) {return _node("CMAVO_pre", expr);}
CMAVO_post = expr:(post_clause) {return _node("CMAVO_post", expr);}
// CMAVO_no_SA_handling = pre_clause CMAVO post_clause
// eks; basic afterthought logical connectives
A_clause = expr:(A_pre A_post) {return _node("A_clause", expr);}
A_pre = expr:(pre_clause A spaces?) {return _node("A_pre", expr);}
A_post = expr:(post_clause) {return _node("A_post", expr);}
// A_no_SA_handling = pre_clause A post_clause
// modal operators
BAI_clause = expr:(BAI_pre BAI_post) {return _node("BAI_clause", expr);}
BAI_pre = expr:(pre_clause BAI spaces?) {return _node("BAI_pre", expr);}
BAI_post = expr:(post_clause) {return _node("BAI_post", expr);}
// BAI_no_SA_handling = pre_clause BAI post_clause
// next word intensifier
BAhE_clause = expr:(BAhE_pre BAhE_post) {return _node("BAhE_clause", expr);}
BAhE_pre = expr:(BAhE spaces?) {return _node("BAhE_pre", expr);}
BAhE_post = expr:(si_clause? !ZEI_clause !BU_clause) {return _node("BAhE_post", expr);}
// BAhE_no_SA_handling = BAhE spaces? BAhE_post
// sumti link to attach sumti to a selbri
BE_clause = expr:(BE_pre BE_post) {return _node("BE_clause", expr);}
BE_pre = expr:(pre_clause BE spaces?) {return _node("BE_pre", expr);}
BE_post = expr:(post_clause) {return _node("BE_post", expr);}
// BE_no_SA_handling = pre_clause BE post_clause
// multiple sumti separator between BE, BEI
BEI_clause = expr:(BEI_pre BEI_post) {return _node("BEI_clause", expr);}
BEI_pre = expr:(pre_clause BEI spaces?) {return _node("BEI_pre", expr);}
BEI_post = expr:(post_clause) {return _node("BEI_post", expr);}
// BEI_no_SA_handling = pre_clause BEI post_clause
// terminates BEBEI specified descriptors
BEhO_clause = expr:(BEhO_pre BEhO_post) {return _node("BEhO_clause", expr);}
BEhO_pre = expr:(pre_clause BEhO spaces?) {return _node("BEhO_pre", expr);}
BEhO_post = expr:(post_clause) {return _node("BEhO_post", expr);}
// BEhO_no_SA_handling = pre_clause BEhO post_clause
// prefix for high_priority MEX operator
BIhE_clause = expr:(BIhE_pre BIhE_post) {return _node("BIhE_clause", expr);}
BIhE_pre = expr:(pre_clause BIhE spaces?) {return _node("BIhE_pre", expr);}
BIhE_post = expr:(post_clause) {return _node("BIhE_post", expr);}
// BIhE_no_SA_handling = pre_clause BIhE post_clause
// interval component of JOI
BIhI_clause = expr:(BIhI_pre BIhI_post) {return _node("BIhI_clause", expr);}
BIhI_pre = expr:(pre_clause BIhI spaces?) {return _node("BIhI_pre", expr);}
BIhI_post = expr:(post_clause) {return _node("BIhI_post", expr);}
// BIhI_no_SA_handling = pre_clause BIhI post_clause
// joins two units with shortest scope
BO_clause = expr:(BO_pre BO_post) {return _node("BO_clause", expr);}
BO_pre = expr:(pre_clause BO spaces?) {return _node("BO_pre", expr);}
BO_post = expr:(post_clause) {return _node("BO_post", expr);}
// BO_no_SA_handling = pre_clause BO post_clause
// number or lerfu_string terminator
BOI_clause = expr:(BOI_pre BOI_post) {return _node("BOI_clause", expr);}
BOI_pre = expr:(pre_clause BOI spaces?) {return _node("BOI_pre", expr);}
BOI_post = expr:(post_clause) {return _node("BOI_post", expr);}
// BOI_no_SA_handling = pre_clause BOI post_clause
// turns any word into a BY lerfu word
BU_clause = expr:(BU_pre BU_post) {return _node("BU_clause", expr);}
// BU_clause_no_SA = BU_pre_no_SA BU BU_post
BU_pre = expr:(pre_clause BU spaces?) {return _node("BU_pre", expr);}
// BU_pre_no_SA = pre_clause
BU_post = expr:(spaces?) {return _node("BU_post", expr);}
// BU_no_SA_handling = pre_clause BU spaces?
// individual lerfu words
BY_clause = expr:(BY_pre BY_post / bu_clause) {return _node("BY_clause", expr);}
BY_pre = expr:(pre_clause BY spaces?) {return _node("BY_pre", expr);}
BY_post = expr:(post_clause) {return _node("BY_post", expr);}
// BY_no_SA_handling = pre_clause BY post_clause / bu_clause_no_SA
// specifies actualitypotentiality of tense
CAhA_clause = expr:(CAhA_pre CAhA_post) {return _node("CAhA_clause", expr);}
CAhA_pre = expr:(pre_clause CAhA spaces?) {return _node("CAhA_pre", expr);}
CAhA_post = expr:(post_clause) {return _node("CAhA_post", expr);}
// CAhA_no_SA_handling = pre_clause CAhA post_clause
// afterthought intensity marker
CAI_clause = expr:(CAI_pre CAI_post) {return _node("CAI_clause", expr);}
CAI_pre = expr:(pre_clause CAI spaces?) {return _node("CAI_pre", expr);}
CAI_post = expr:(post_clause) {return _node("CAI_post", expr);}
// CAI_no_SA_handling = pre_clause CAI post_clause
// pro_bridi assignment operator
CEI_clause = expr:(CEI_pre CEI_post) {return _node("CEI_clause", expr);}
CEI_pre = expr:(pre_clause CEI spaces?) {return _node("CEI_pre", expr);}
CEI_post = expr:(post_clause) {return _node("CEI_post", expr);}
// CEI_no_SA_handling = pre_clause CEI post_clause
// afterthought term list connective
CEhE_clause = expr:(CEhE_pre CEhE_post) {return _node("CEhE_clause", expr);}
CEhE_pre = expr:(pre_clause CEhE spaces?) {return _node("CEhE_pre", expr);}
CEhE_post = expr:(post_clause) {return _node("CEhE_post", expr);}
// CEhE_no_SA_handling = pre_clause CEhE post_clause
// names; require consonant end, then pause no
// LA or DOI selma'o embedded, pause before if
// vowel initial and preceded by a vowel
// tanru inversion
CO_clause = expr:(CO_pre CO_post) {return _node("CO_clause", expr);}
CO_pre = expr:(pre_clause CO spaces?) {return _node("CO_pre", expr);}
CO_post = expr:(post_clause) {return _node("CO_post", expr);}
// CO_no_SA_handling = pre_clause CO post_clause
COI_clause = expr:(COI_pre COI_post) {return _node("COI_clause", expr);}
COI_pre = expr:(pre_clause COI spaces?) {return _node("COI_pre", expr);}
COI_post = expr:(post_clause) {return _node("COI_post", expr);}
// COI_no_SA_handling = pre_clause COI post_clause
// vocative marker permitted inside names; must
// always be followed by pause or DOI
// separator between head sumti and selbri
CU_clause = expr:(CU_pre CU_post) {return _node("CU_clause", expr);}
CU_pre = expr:(pre_clause CU spaces?) {return _node("CU_pre", expr);}
CU_post = expr:(post_clause) {return _node("CU_post", expr);}
// CU_no_SA_handling = pre_clause CU post_clause
// tensemodal question
CUhE_clause = expr:(CUhE_pre CUhE_post) {return _node("CUhE_clause", expr);}
CUhE_pre = expr:(pre_clause CUhE spaces?) {return _node("CUhE_pre", expr);}
CUhE_post = expr:(post_clause) {return _node("CUhE_post", expr);}
// CUhE_no_SA_handling = pre_clause CUhE post_clause
// cancel anaphoracataphora assignments
DAhO_clause = expr:(DAhO_pre DAhO_post) {return _node("DAhO_clause", expr);}
DAhO_pre = expr:(pre_clause DAhO spaces?) {return _node("DAhO_pre", expr);}
DAhO_post = expr:(post_clause) {return _node("DAhO_post", expr);}
// DAhO_no_SA_handling = pre_clause DAhO post_clause
// vocative marker
DOI_clause = expr:(DOI_pre DOI_post) {return _node("DOI_clause", expr);}
DOI_pre = expr:(pre_clause DOI spaces?) {return _node("DOI_pre", expr);}
DOI_post = expr:(post_clause) {return _node("DOI_post", expr);}
// DOI_no_SA_handling = pre_clause DOI post_clause
// terminator for DOI_marked vocatives
DOhU_clause = expr:(DOhU_pre DOhU_post) {return _node("DOhU_clause", expr);}
DOhU_pre = expr:(pre_clause DOhU spaces?) {return _node("DOhU_pre", expr);}
DOhU_post = expr:(post_clause) {return _node("DOhU_post", expr);}
// DOhU_no_SA_handling = pre_clause DOhU post_clause
// modifier head generic case tag
FA_clause = expr:(FA_pre FA_post) {return _node("FA_clause", expr);}
FA_pre = expr:(pre_clause FA spaces?) {return _node("FA_pre", expr);}
FA_post = expr:(post_clause) {return _node("FA_post", expr);}
// FA_no_SA_handling = pre_clause FA post_clause
// superdirections in space
FAhA_clause = expr:(FAhA_pre FAhA_post) {return _node("FAhA_clause", expr);}
FAhA_pre = expr:(pre_clause FAhA spaces?) {return _node("FAhA_pre", expr);}
FAhA_post = expr:(post_clause) {return _node("FAhA_post", expr);}
// FAhA_no_SA_handling = pre_clause FAhA post_clause
// normally elided 'done pause' to indicate end
// of utterance string
FAhO_clause = expr:(pre_clause FAhO spaces?) {return _node("FAhO_clause", expr);}
// space interval mod flag
FEhE_clause = expr:(FEhE_pre FEhE_post) {return _node("FEhE_clause", expr);}
FEhE_pre = expr:(pre_clause FEhE spaces?) {return _node("FEhE_pre", expr);}
FEhE_post = expr:(post_clause) {return _node("FEhE_post", expr);}
// FEhE_no_SA_handling = pre_clause FEhE post_clause
// ends bridi to modal conversion
FEhU_clause = expr:(FEhU_pre FEhU_post) {return _node("FEhU_clause", expr);}
FEhU_pre = expr:(pre_clause FEhU spaces?) {return _node("FEhU_pre", expr);}
FEhU_post = expr:(post_clause) {return _node("FEhU_post", expr);}
// FEhU_no_SA_handling = pre_clause FEhU post_clause
// marks bridi to modal conversion
FIhO_clause = expr:(FIhO_pre FIhO_post) {return _node("FIhO_clause", expr);}
FIhO_pre = expr:(pre_clause FIhO spaces?) {return _node("FIhO_pre", expr);}
FIhO_post = expr:(post_clause) {return _node("FIhO_post", expr);}
// FIhO_no_SA_handling = pre_clause FIhO post_clause
// end compound lerfu
FOI_clause = expr:(FOI_pre FOI_post) {return _node("FOI_clause", expr);}
FOI_pre = expr:(pre_clause FOI spaces?) {return _node("FOI_pre", expr);}
FOI_post = expr:(post_clause) {return _node("FOI_post", expr);}
// FOI_no_SA_handling = pre_clause FOI post_clause
// reverse Polish flag
FUhA_clause = expr:(FUhA_pre FUhA_post) {return _node("FUhA_clause", expr);}
FUhA_pre = expr:(pre_clause FUhA spaces?) {return _node("FUhA_pre", expr);}
FUhA_post = expr:(post_clause) {return _node("FUhA_post", expr);}
// FUhA_no_SA_handling = pre_clause FUhA post_clause
// open long scope for indicator
FUhE_clause = expr:(FUhE_pre FUhE_post) {return _node("FUhE_clause", expr);}
FUhE_pre = expr:(pre_clause FUhE spaces?) {return _node("FUhE_pre", expr);}
FUhE_post = expr:(!BU_clause spaces? !ZEI_clause !BU_clause) {return _node("FUhE_post", expr);}
// FUhE_no_SA_handling = pre_clause FUhE post_clause
// close long scope for indicator
FUhO_clause = expr:(FUhO_pre FUhO_post) {return _node("FUhO_clause", expr);}
FUhO_pre = expr:(pre_clause FUhO spaces?) {return _node("FUhO_pre", expr);}
FUhO_post = expr:(post_clause) {return _node("FUhO_post", expr);}
// FUhO_no_SA_handling = pre_clause FUhO post_clause
// geks; forethought logical connectives
GA_clause = expr:(GA_pre GA_post) {return _node("GA_clause", expr);}
GA_pre = expr:(pre_clause GA spaces?) {return _node("GA_pre", expr);}
GA_post = expr:(post_clause) {return _node("GA_post", expr);}
// GA_no_SA_handling = pre_clause GA post_clause
// openclosed interval markers for BIhI
GAhO_clause = expr:(GAhO_pre GAhO_post) {return _node("GAhO_clause", expr);}
GAhO_pre = expr:(pre_clause GAhO spaces?) {return _node("GAhO_pre", expr);}
GAhO_post = expr:(post_clause) {return _node("GAhO_post", expr);}
// GAhO_no_SA_handling = pre_clause GAhO post_clause
// marker ending GOI relative clauses
GEhU_clause = expr:(GEhU_pre GEhU_post) {return _node("GEhU_clause", expr);}
GEhU_pre = expr:(pre_clause GEhU spaces?) {return _node("GEhU_pre", expr);}
GEhU_post = expr:(post_clause) {return _node("GEhU_post", expr);}
// GEhU_no_SA_handling = pre_clause GEhU post_clause
// forethought medial marker
GI_clause = expr:(GI_pre GI_post) {return _node("GI_clause", expr);}
GI_pre = expr:(pre_clause GI spaces?) {return _node("GI_pre", expr);}
GI_post = expr:(post_clause) {return _node("GI_post", expr);}
// GI_no_SA_handling = pre_clause GI post_clause
// logical connectives for bridi_tails
GIhA_clause = expr:(GIhA_pre GIhA_post) {return _node("GIhA_clause", expr);}
GIhA_pre = expr:(pre_clause GIhA spaces?) {return _node("GIhA_pre", expr);}
GIhA_post = expr:(post_clause) {return _node("GIhA_post", expr);}
// GIhA_no_SA_handling = pre_clause GIhA post_clause
// attaches a sumti modifier to a sumti
GOI_clause = expr:(GOI_pre GOI_post) {return _node("GOI_clause", expr);}
GOI_pre = expr:(pre_clause GOI spaces?) {return _node("GOI_pre", expr);}
GOI_post = expr:(post_clause) {return _node("GOI_post", expr);}
// GOI_no_SA_handling = pre_clause GOI post_clause
// pro_bridi
GOhA_clause = expr:(GOhA_pre GOhA_post) {return _node("GOhA_clause", expr);}
GOhA_pre = expr:(pre_clause GOhA spaces?) {return _node("GOhA_pre", expr);}
GOhA_post = expr:(post_clause) {return _node("GOhA_post", expr);}
// GOhA_no_SA_handling = pre_clause GOhA post_clause
// GEK for tanru units, corresponds to JEKs
GUhA_clause = expr:(GUhA_pre GUhA_post) {return _node("GUhA_clause", expr);}
GUhA_pre = expr:(pre_clause GUhA spaces?) {return _node("GUhA_pre", expr);}
GUhA_post = expr:(post_clause) {return _node("GUhA_post", expr);}
// GUhA_no_SA_handling = pre_clause GUhA post_clause
// sentence link
I_clause = expr:(sentence_sa* I_pre I_post) {return _node("I_clause", expr);}
I_pre = expr:(pre_clause I spaces?) {return _node("I_pre", expr);}
I_post = expr:(post_clause) {return _node("I_post", expr);}
// I_no_SA_handling = pre_clause I post_clause
// jeks; logical connectives within tanru
JA_clause = expr:(JA_pre JA_post) {return _node("JA_clause", expr);}
JA_pre = expr:(pre_clause JA spaces?) {return _node("JA_pre", expr);}
JA_post = expr:(post_clause) {return _node("JA_post", expr);}
// JA_no_SA_handling = pre_clause JA post_clause
// modal conversion flag
JAI_clause = expr:(JAI_pre JAI_post) {return _node("JAI_clause", expr);}
JAI_pre = expr:(pre_clause JAI spaces?) {return _node("JAI_pre", expr);}
JAI_post = expr:(post_clause) {return _node("JAI_post", expr);}
// JAI_no_SA_handling = pre_clause JAI post_clause
// flags an array operand
JOhI_clause = expr:(JOhI_pre JOhI_post) {return _node("JOhI_clause", expr);}
JOhI_pre = expr:(pre_clause JOhI spaces?) {return _node("JOhI_pre", expr);}
JOhI_post = expr:(post_clause) {return _node("JOhI_post", expr);}
// JOhI_no_SA_handling = pre_clause JOhI post_clause
// non_logical connectives
JOI_clause = expr:(JOI_pre JOI_post) {return _node("JOI_clause", expr);}
JOI_pre = expr:(pre_clause JOI spaces?) {return _node("JOI_pre", expr);}
JOI_post = expr:(post_clause) {return _node("JOI_post", expr);}
// JOI_no_SA_handling = pre_clause JOI post_clause
// left long scope marker
KE_clause = expr:(KE_pre KE_post) {return _node("KE_clause", expr);}
KE_pre = expr:(pre_clause KE spaces?) {return _node("KE_pre", expr);}
KE_post = expr:(post_clause) {return _node("KE_post", expr);}
// KE_no_SA_handling = pre_clause KE post_clause
// right terminator for KE groups
KEhE_clause = expr:(KEhE_pre KEhE_post) {return _node("KEhE_clause", expr);}
KEhE_pre = expr:(pre_clause KEhE spaces?) {return _node("KEhE_pre", expr);}
KEhE_post = expr:(post_clause) {return _node("KEhE_post", expr);}
// KEhE_no_SA_handling = pre_clause KEhE post_clause
// right terminator, NU abstractions
KEI_clause = expr:(KEI_pre KEI_post) {return _node("KEI_clause", expr);}
KEI_pre = expr:(pre_clause KEI spaces?) {return _node("KEI_pre", expr);}
KEI_post = expr:(post_clause) {return _node("KEI_post", expr);}
KEI_no_SA_handling = expr:(pre_clause KEI post_clause) {return _node("KEI_no_SA_handling", expr);}
// multiple utterance scope for tenses
KI_clause = expr:(KI_pre KI_post) {return _node("KI_clause", expr);}
KI_pre = expr:(pre_clause KI spaces?) {return _node("KI_pre", expr);}
KI_post = expr:(post_clause) {return _node("KI_post", expr);}
// KI_no_SA_handling = pre_clause KI post_clause
// sumti anaphora
KOhA_clause = expr:(KOhA_pre KOhA_post) {return _node("KOhA_clause", expr);}
KOhA_pre = expr:(pre_clause KOhA spaces?) {return _node("KOhA_pre", expr);}
KOhA_post = expr:(post_clause) {return _node("KOhA_post", expr);}
// KOhA_no_SA_handling = pre_clause KOhA spaces?
// right terminator for descriptions, etc.
KU_clause = expr:(KU_pre KU_post) {return _node("KU_clause", expr);}
KU_pre = expr:(pre_clause KU spaces?) {return _node("KU_pre", expr);}
KU_post = expr:(post_clause) {return _node("KU_post", expr);}
// KU_no_SA_handling = pre_clause KU post_clause
// MEX forethought delimiter
KUhE_clause = expr:(KUhE_pre KUhE_post) {return _node("KUhE_clause", expr);}
KUhE_pre = expr:(pre_clause KUhE spaces?) {return _node("KUhE_pre", expr);}
KUhE_post = expr:(post_clause) {return _node("KUhE_post", expr);}
// KUhE_no_SA_handling = pre_clause KUhE post_clause
// right terminator, NOI relative clauses
KUhO_clause = expr:(KUhO_pre KUhO_post) {return _node("KUhO_clause", expr);}
KUhO_pre = expr:(pre_clause KUhO spaces?) {return _node("KUhO_pre", expr);}
KUhO_post = expr:(post_clause) {return _node("KUhO_post", expr);}
// KUhO_no_SA_handling = pre_clause KUhO post_clause
// name descriptors
LA_clause = expr:(LA_pre LA_post) {return _node("LA_clause", expr);}
LA_pre = expr:(pre_clause LA spaces?) {return _node("LA_pre", expr);}
LA_post = expr:(post_clause) {return _node("LA_post", expr);}
// LA_no_SA_handling = pre_clause LA post_clause
// lerfu prefixes
LAU_clause = expr:(LAU_pre LAU_post) {return _node("LAU_clause", expr);}
LAU_pre = expr:(pre_clause LAU spaces?) {return _node("LAU_pre", expr);}
LAU_post = expr:(post_clause) {return _node("LAU_post", expr);}
// LAU_no_SA_handling = pre_clause LAU post_clause
// sumti qualifiers
LAhE_clause = expr:(LAhE_pre LAhE_post) {return _node("LAhE_clause", expr);}
LAhE_pre = expr:(pre_clause LAhE spaces?) {return _node("LAhE_pre", expr);}
LAhE_post = expr:(post_clause) {return _node("LAhE_post", expr);}
// LAhE_no_SA_handling = pre_clause LAhE post_clause
// sumti descriptors
LE_clause = expr:(LE_pre LE_post) {return _node("LE_clause", expr);}
LE_pre = expr:(pre_clause LE spaces?) {return _node("LE_pre", expr);}
LE_post = expr:(post_clause) {return _node("LE_post", expr);}
// LE_no_SA_handling = pre_clause LE post_clause
// possibly ungrammatical text right quote
LEhU_clause = expr:(LEhU_pre LEhU_post) {return _node("LEhU_clause", expr);}
LEhU_pre = expr:(pre_clause LEhU spaces?) {return _node("LEhU_pre", expr);}
LEhU_post = expr:(spaces?) {return _node("LEhU_post", expr);}
// LEhU_clause_no_SA = LEhU_pre_no_SA LEhU_post
// LEhU_pre_no_SA = pre_clause LEhU spaces?
// LEhU_no_SA_handling = pre_clause LEhU post_clause
// convert number to sumti
LI_clause = expr:(LI_pre LI_post) {return _node("LI_clause", expr);}
LI_pre = expr:(pre_clause LI spaces?) {return _node("LI_pre", expr);}
LI_post = expr:(post_clause) {return _node("LI_post", expr);}
// LI_no_SA_handling = pre_clause LI post_clause
// grammatical text right quote
LIhU_clause = expr:(LIhU_pre LIhU_post) {return _node("LIhU_clause", expr);}
LIhU_pre = expr:(pre_clause LIhU spaces?) {return _node("LIhU_pre", expr);}
LIhU_post = expr:(post_clause) {return _node("LIhU_post", expr);}
// LIhU_no_SA_handling = pre_clause LIhU post_clause
// elidable terminator for LI
LOhO_clause = expr:(LOhO_pre LOhO_post) {return _node("LOhO_clause", expr);}
LOhO_pre = expr:(pre_clause LOhO spaces?) {return _node("LOhO_pre", expr);}
LOhO_post = expr:(post_clause) {return _node("LOhO_post", expr);}
// LOhO_no_SA_handling = pre_clause LOhO post_clause
// possibly ungrammatical text left quote
LOhU_clause = expr:(LOhU_pre LOhU_post) {return _node("LOhU_clause", expr);}
LOhU_pre = expr:(pre_clause LOhU spaces? (!LEhU any_word)* LEhU_clause spaces?) {return _node("LOhU_pre", expr);}
LOhU_post = expr:(post_clause) {return _node("LOhU_post", expr);}
// LOhU_no_SA_handling = pre_clause LOhU spaces? (!LEhU any_word)* LEhU_clause spaces?
// grammatical text left quote
LU_clause = expr:(LU_pre LU_post) {return _node("LU_clause", expr);}
LU_pre = expr:(pre_clause LU spaces?) {return _node("LU_pre", expr);}
LU_post = expr:(spaces? si_clause? !ZEI_clause !BU_clause) {return _node("LU_post", expr);}
// LU_post isn't post_clause for avoiding indicators to attach to LU in the parse tree.
// LU_no_SA_handling = pre_clause LU post_clause
// LAhE close delimiter
LUhU_clause = expr:(LUhU_pre LUhU_post) {return _node("LUhU_clause", expr);}
LUhU_pre = expr:(pre_clause LUhU spaces?) {return _node("LUhU_pre", expr);}
LUhU_post = expr:(post_clause) {return _node("LUhU_post", expr);}
// LUhU_no_SA_handling = pre_clause LUhU post_clause
// change MEX expressions to MEX operators
MAhO_clause = expr:(MAhO_pre MAhO_post) {return _node("MAhO_clause", expr);}
MAhO_pre = expr:(pre_clause MAhO spaces?) {return _node("MAhO_pre", expr);}
MAhO_post = expr:(post_clause) {return _node("MAhO_post", expr);}
// MAhO_no_SA_handling = pre_clause MAhO post_clause