-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcodeparse.h
executable file
·1037 lines (998 loc) · 50.6 KB
/
codeparse.h
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
#ifndef bnf_tamgu_h
#define bnf_tamgu_h
#include "x_node.h"
#include "tokens.h"
class bnf_tamgu {
public:
long currentpos;
int intoken;
long lineerror;
string labelerror;
int errornumber;
char gFail;
long baseline;
tokenizer_result<string>* fx;
vector<string> labelerrors;
vector<long> lineerrors;
vector<long> errornumbers;
bnf_tamgu(int l=0) {
baseline=l;
fx=NULL;
intoken=0;
currentpos=0;
Y_var_1=')';
Y_var_0='(';
VS_var_3="CLOSE";
VS_var_2="OPEN";
}
void initialize(tokenizer_result<string>* xr) {
labelerrors.clear();
lineerrors.clear();
errornumbers.clear();
baseline=0;
gFail=0;
intoken=0;
currentpos=0;
lineerror=-1;
errornumber=-1;
labelerror="";
fx=xr;
}
void setfail(char test) {
if (test)
gFail=1;
}
void initfail(string lab,long pos,int error) {
if (gFail==1)
return;
if (pos>=fx->stackln.size()) {
if (fx->stackln.size() > 0)
lineerror = fx->stackln.back()+baseline;
else
lineerror=-1;
labelerror=lab;
errornumber=error;
return;
}
lineerror=fx->stackln[pos]+baseline;
labelerror=lab;
errornumber=error;
labelerrors.push_back(labelerror);
lineerrors.push_back(lineerror);
errornumbers.push_back(errornumber);
}
void poperrors() {
if (!gFail) {
labelerrors.pop_back();
lineerrors.pop_back();
errornumbers.pop_back();
}
}
inline void x_pop_node(x_node** tree,int addsubtree) {
if (*tree!=NULL) {
if ((*tree)->init==0) {
delete *tree;
*tree=NULL;
}
else
(*tree)->pop(addsubtree);
}
}
inline void x_init_node(string& lreturn,string& lret,x_node** tree,string name,long d,bool conc) {
if (lret.size()>0 || conc==false) {
if (*tree==NULL)
*tree=new x_node;
(*tree)->start=d;
(*tree)->end=d;
(*tree)->token=name;
(*tree)->init=1;
if (conc) {
(*tree)->value=lret;
lreturn+=lret;
}
}
}
inline void x_init_tree(x_node** tree,x_node* subtree,int& addsubtree) {
if (subtree==NULL)
return;
if (*tree==NULL)
*tree=new x_node;
if ((*tree)->append(subtree)==0)
delete subtree;
else
addsubtree++;
}
char x_test_dot(string& lret);
char x_test_string(string& lret,string sub);
void incrementintoken() {
intoken++;
if (intoken==fx->stack[currentpos].size()) {
currentpos++;
intoken=0;
}
}
void incrementpos() {
currentpos++;
intoken=0;
}
inline char x_test_char(string& lret,unsigned char sub) {
if (currentpos>=fx->stack.size())
return(0);
unsigned char x=fx->stack[currentpos][intoken];
if (x==sub) {
incrementintoken();
lret+=x;
return(1);
}
return(0);
}
inline char x_test_in(string& lret,char* sub) {
if (currentpos>=fx->stack.size())
return(0);
char x=fx->stack[currentpos][intoken];
if (strchr(sub,x)!=NULL) {
lret+=x;
incrementintoken();
return(1);
}
return(0);
}
inline char x_test_ord(string& lret,unsigned char b,unsigned char g) {
if (currentpos>=fx->stack.size())
return(0);
unsigned char x=fx->stack[currentpos][intoken];
if (x>=b && x<=g) {
incrementintoken();
lret+=x;
return(1);
}
return(0);
}
inline char x_test_any(string& lret) {
if (currentpos>=fx->stack.size())
return(0);
char x=fx->stack[currentpos][intoken];
incrementintoken();
lret+=x;
return(1);
}
char m_EOF(string& lreturn,x_node** tree) {
if (currentpos>=fx->stack.size())
return(1);
return(0);
}
long x_linenumber(long p) {
if (p<fx->stackln.size())
return (fx->stackln[p]+baseline);
return -1;
}
string x_errormsg(long i);
x_node* x_parsing(tokenizer_result<string>* xr,x_parsing_mode mode,bool display=true);
x_node* x_call_again(tokenizer_result<string>* xr,x_parsing_mode mode,bool display=true);
char m_path(string& lreturn,x_node** tree);
char m_path_0_1(string& lreturn,x_node** tree);
char m_shell(string& lreturn,x_node** tree);
char m_shell_0_1(string& lreturn,x_node** tree);
char m_signature(string& lreturn,x_node** tree);
char m_notreserved(string& lreturn,x_node** tree);
char m_operator(string& lreturn,x_node** tree);
char m_operator_0_1(string& lreturn,x_node** tree);
char m_operator_0_2(string& lreturn,x_node** tree);
char m_operator_0_3(string& lreturn,x_node** tree);
char m_operator_0_4(string& lreturn,x_node** tree);
char m_operator_0_5(string& lreturn,x_node** tree);
char m_operator_0_6(string& lreturn,x_node** tree);
char m_operator_0_7(string& lreturn,x_node** tree);
char m_operator_0_8(string& lreturn,x_node** tree);
char m_operatoraffectation(string& lreturn,x_node** tree);
char m_operatoraffectation_0_1(string& lreturn,x_node** tree);
char m_operatoraffectation_0_2(string& lreturn,x_node** tree);
char m_operatoraffectation_0_3(string& lreturn,x_node** tree);
char m_operatoraffectation_0_4(string& lreturn,x_node** tree);
char m_operatoraffectation_0_5(string& lreturn,x_node** tree);
char m_operatoraffectation_0_6(string& lreturn,x_node** tree);
char m_operatoraffectation_0_7(string& lreturn,x_node** tree);
char m_operatoraffectation_0_7_8(string& lreturn,x_node** tree);
char m_operatoraffectation_0_9(string& lreturn,x_node** tree);
char m_operatoraffectation_0_10(string& lreturn,x_node** tree);
char m_operatoraffectation_0_11(string& lreturn,x_node** tree);
char m_operatoraffectation_0_12(string& lreturn,x_node** tree);
char m_operatoraffectation_0_13(string& lreturn,x_node** tree);
char m_operatoraffectation_0_14(string& lreturn,x_node** tree);
char m_operatoraffectation_0_15(string& lreturn,x_node** tree);
char m_operatoraffectation_0_16(string& lreturn,x_node** tree);
char m_operatoraffectation_0_17(string& lreturn,x_node** tree);
char m_operatoraffectation_0_18(string& lreturn,x_node** tree);
char m_operatoraffectation_0_19(string& lreturn,x_node** tree);
char m_operatoraffectation_0_20(string& lreturn,x_node** tree);
char m_operatoraffectation_0_21(string& lreturn,x_node** tree);
char m_operatoraffectation_0_22(string& lreturn,x_node** tree);
char m_orand(string& lreturn,x_node** tree);
char m_orand_0_1(string& lreturn,x_node** tree);
char m_orand_0_2(string& lreturn,x_node** tree);
char m_comparator(string& lreturn,x_node** tree);
char m_comparator_0_1(string& lreturn,x_node** tree);
char m_comparator_0_2(string& lreturn,x_node** tree);
char m_comparator_0_3(string& lreturn,x_node** tree);
char m_comparator_0_4(string& lreturn,x_node** tree);
char m_comparator_0_5(string& lreturn,x_node** tree);
char m_comparator_0_6(string& lreturn,x_node** tree);
char m_fulloperation(string& lreturn,x_node** tree);
char m_operation(string& lreturn,x_node** tree);
char m_multiply(string& lreturn,x_node** tree);
char m_multiply_0_1(string& lreturn,x_node** tree);
char m_multiply_0_2(string& lreturn,x_node** tree);
char m_multiply_0_2_3(string& lreturn,x_node** tree);
char m_comparison(string& lreturn,x_node** tree);
char m_private(string& lreturn,x_node** tree);
char m_common(string& lreturn,x_node** tree);
char m_const(string& lreturn,x_node** tree);
char m_instance_variable(string& lreturn,x_node** tree);
char m_instance_variable_0_1(string& lreturn,x_node** tree);
char m_instance_variable_0_1_2(string& lreturn,x_node** tree);
char m_feature(string& lreturn,x_node** tree);
char m_feature_0_1(string& lreturn,x_node** tree);
char m_feature_0_1_2(string& lreturn,x_node** tree);
char m_feature_0_3(string& lreturn,x_node** tree);
char m_type(string& lreturn,x_node** tree);
char m_type_0_1(string& lreturn,x_node** tree);
char m_type_0_2(string& lreturn,x_node** tree);
char m_depend(string& lreturn,x_node** tree);
char m_declaration(string& lreturn,x_node** tree);
char m_declaration_0_1(string& lreturn,x_node** tree);
char m_declaration_0_1_2(string& lreturn,x_node** tree);
char m_declaration_0_3(string& lreturn,x_node** tree);
char m_declaration_0_4(string& lreturn,x_node** tree);
char m_declaration_0_4_5(string& lreturn,x_node** tree);
char m_declarationlist(string& lreturn,x_node** tree);
char m_declarationlist_0_4(string& lreturn,x_node** tree);
char m_declarationlist_0_4_5(string& lreturn,x_node** tree);
char m_declarationlist_0_6(string& lreturn,x_node** tree);
char m_declarationlist_0_6_7(string& lreturn,x_node** tree);
char m_multideclaration(string& lreturn,x_node** tree);
char m_multideclaration_0_1(string& lreturn,x_node** tree);
char m_multideclaration_0_1_2(string& lreturn,x_node** tree);
char m_multideclaration_0_1_2_3(string& lreturn,x_node** tree);
char m_container(string& lreturn,x_node** tree);
char m_framecontainer(string& lreturn,x_node** tree);
char m_framecontainer_0_1(string& lreturn,x_node** tree);
char m_declarationending(string& lreturn,x_node** tree);
char m_frame(string& lreturn,x_node** tree);
char m_frame_0_1(string& lreturn,x_node** tree);
char m_frame_0_3(string& lreturn,x_node** tree);
char m_extension(string& lreturn,x_node** tree);
char m_instruction(string& lreturn,x_node** tree);
char m_instruction_0_1(string& lreturn,x_node** tree);
char m_nonlimited(string& lreturn,x_node** tree);
char m_arguments(string& lreturn,x_node** tree);
char m_arguments_0_1(string& lreturn,x_node** tree);
char m_arguments_0_1_2(string& lreturn,x_node** tree);
char m_arguments_0_1_2_3(string& lreturn,x_node** tree);
char m_strict(string& lreturn,x_node** tree);
char m_join(string& lreturn,x_node** tree);
char m_protecclusive(string& lreturn,x_node** tree);
char m_functionlabel(string& lreturn,x_node** tree);
char m_typefunction(string& lreturn,x_node** tree);
char m_typefunction_0_1(string& lreturn,x_node** tree);
char m_typefunction_0_2(string& lreturn,x_node** tree);
char m_typefunction_0_3(string& lreturn,x_node** tree);
char m_typefunction_0_4(string& lreturn,x_node** tree);
char m_indexname(string& lreturn,x_node** tree);
char m_intervalname(string& lreturn,x_node** tree);
char m_returntype(string& lreturn,x_node** tree);
char m_space(string& lreturn,x_node** tree);
char m_function(string& lreturn,x_node** tree);
char m_function_0_1(string& lreturn,x_node** tree);
char m_function_0_2(string& lreturn,x_node** tree);
char m_function_0_3(string& lreturn,x_node** tree);
char m_subfunc(string& lreturn,x_node** tree);
char m_subfuncbis(string& lreturn,x_node** tree);
char m_framevariable(string& lreturn,x_node** tree);
char m_framesep(string& lreturn,x_node** tree);
char m_frameup(string& lreturn,x_node** tree);
char m_functioncall(string& lreturn,x_node** tree);
char m_functioncall_0_1(string& lreturn,x_node** tree);
char m_regularcall(string& lreturn,x_node** tree);
char m_regularcall_0_1(string& lreturn,x_node** tree);
char m_regularcall_0_1_2(string& lreturn,x_node** tree);
char m_regularcall_0_3(string& lreturn,x_node** tree);
char m_regularcall_0_3_4(string& lreturn,x_node** tree);
char m_purecall(string& lreturn,x_node** tree);
char m_purecall_0_2(string& lreturn,x_node** tree);
char m_purecall_0_2_3(string& lreturn,x_node** tree);
char m_returncall(string& lreturn,x_node** tree);
char m_returncall_0_1(string& lreturn,x_node** tree);
char m_returncall_0_1_2(string& lreturn,x_node** tree);
char m_breakcall(string& lreturn,x_node** tree);
char m_continuecall(string& lreturn,x_node** tree);
char m_call(string& lreturn,x_node** tree);
char m_sep(string& lreturn,x_node** tree);
char m_parameters(string& lreturn,x_node** tree);
char m_parameters_0_1(string& lreturn,x_node** tree);
char m_parameters_0_1_2(string& lreturn,x_node** tree);
char m_aliasdeclaration(string& lreturn,x_node** tree);
char m_aliasdeclaration_0_1(string& lreturn,x_node** tree);
char m_aliasdeclaration_0_1_2(string& lreturn,x_node** tree);
char m_aliasdeclaration_0_3(string& lreturn,x_node** tree);
char m_aliasdeclaration_0_3_4(string& lreturn,x_node** tree);
char m_blocs(string& lreturn,x_node** tree);
char m_blocs_0_1(string& lreturn,x_node** tree);
char m_bloc(string& lreturn,x_node** tree);
char m_bloc_0_1(string& lreturn,x_node** tree);
char m_bloc_0_2(string& lreturn,x_node** tree);
char m_bloc_0_2_3(string& lreturn,x_node** tree);
char m_sousbloc(string& lreturn,x_node** tree);
char m_sousbloc_0_1(string& lreturn,x_node** tree);
char m_sousbloc_0_1_2(string& lreturn,x_node** tree);
char m_sousbloc_0_1_3(string& lreturn,x_node** tree);
char m_sousbloc_0_4(string& lreturn,x_node** tree);
char m_sousbloc_0_4_5(string& lreturn,x_node** tree);
char m_complexbloc(string& lreturn,x_node** tree);
char m_singleinstruction(string& lreturn,x_node** tree);
char m_analyse(string& lreturn,x_node** tree);
char m_analyse_0_1(string& lreturn,x_node** tree);
char m_analyse_0_2(string& lreturn,x_node** tree);
char m_variable(string& lreturn,x_node** tree);
char m_variable_0_1(string& lreturn,x_node** tree);
char m_variable_0_1_2(string& lreturn,x_node** tree);
char m_allvariable(string& lreturn,x_node** tree);
char m_purevariable(string& lreturn,x_node** tree);
char m_purevariable_0_1(string& lreturn,x_node** tree);
char m_purevariable_0_1_2(string& lreturn,x_node** tree);
char m_predvariable(string& lreturn,x_node** tree);
char m_predvariable_0_1(string& lreturn,x_node** tree);
char m_plusplus(string& lreturn,x_node** tree);
char m_plusplus_0_1(string& lreturn,x_node** tree);
char m_plusplus_0_2(string& lreturn,x_node** tree);
char m_power(string& lreturn,x_node** tree);
char m_affectation(string& lreturn,x_node** tree);
char m_affectation_0_1(string& lreturn,x_node** tree);
char m_affectation_0_2(string& lreturn,x_node** tree);
char m_increment(string& lreturn,x_node** tree);
char m_increment_0_1(string& lreturn,x_node** tree);
char m_notin(string& lreturn,x_node** tree);
char m_notin_0_1(string& lreturn,x_node** tree);
char m_in(string& lreturn,x_node** tree);
char m_operatorin(string& lreturn,x_node** tree);
char m_operationin(string& lreturn,x_node** tree);
char m_negation(string& lreturn,x_node** tree);
char m_minus(string& lreturn,x_node** tree);
char m_minus_0_1(string& lreturn,x_node** tree);
char m_shapeindexes(string& lreturn,x_node** tree);
char m_shapeindexes_0_1(string& lreturn,x_node** tree);
char m_shapeindexes_0_1_2(string& lreturn,x_node** tree);
char m_shapeindexes_0_3(string& lreturn,x_node** tree);
char m_shapeindexes_0_3_4(string& lreturn,x_node** tree);
char m_indexes(string& lreturn,x_node** tree);
char m_indexes_0_1(string& lreturn,x_node** tree);
char m_interval(string& lreturn,x_node** tree);
char m_interval_0_1(string& lreturn,x_node** tree);
char m_valtuple(string& lreturn,x_node** tree);
char m_valtuple_0_1(string& lreturn,x_node** tree);
char m_valtuple_0_1_2(string& lreturn,x_node** tree);
char m_valtuple_0_1_2_3(string& lreturn,x_node** tree);
char m_valtuple_0_1_2_3_4(string& lreturn,x_node** tree);
char m_valvector(string& lreturn,x_node** tree);
char m_valtail(string& lreturn,x_node** tree);
char m_valvectortail(string& lreturn,x_node** tree);
char m_valvectortail_0_1(string& lreturn,x_node** tree);
char m_valvectortail_0_1_2(string& lreturn,x_node** tree);
char m_valvectortail_0_1_2_3(string& lreturn,x_node** tree);
char m_valvectortail_0_1_2_3_4(string& lreturn,x_node** tree);
char m_valvectortail_0_1_2_5(string& lreturn,x_node** tree);
char m_maptail(string& lreturn,x_node** tree);
char m_dicoval(string& lreturn,x_node** tree);
char m_valmaptail(string& lreturn,x_node** tree);
char m_valmaptail_0_1(string& lreturn,x_node** tree);
char m_valmaptail_0_1_2(string& lreturn,x_node** tree);
char m_valmaptail_0_1_2_3(string& lreturn,x_node** tree);
char m_valmaptail_0_1_2_3_4(string& lreturn,x_node** tree);
char m_valmaptail_0_1_2_5(string& lreturn,x_node** tree);
char m_intentionsep(string& lreturn,x_node** tree);
char m_step(string& lreturn,x_node** tree);
char m_intentionvector(string& lreturn,x_node** tree);
char m_intentionvector_0_1(string& lreturn,x_node** tree);
char m_intentionvector_0_1_2(string& lreturn,x_node** tree);
char m_intentionvector_0_1_3(string& lreturn,x_node** tree);
char m_intentionvector_0_1_3_4(string& lreturn,x_node** tree);
char m_intentionvector_0_1_3_5(string& lreturn,x_node** tree);
char m_intentionwithdouble(string& lreturn,x_node** tree);
char m_intentionwithdouble_0_1(string& lreturn,x_node** tree);
char m_intentionwithdouble_0_1_2(string& lreturn,x_node** tree);
char m_intentionwithdouble_0_1_3(string& lreturn,x_node** tree);
char m_intentionvect(string& lreturn,x_node** tree);
char m_dico(string& lreturn,x_node** tree);
char m_valmap(string& lreturn,x_node** tree);
char m_valmap_0_1(string& lreturn,x_node** tree);
char m_valmap_0_1_2(string& lreturn,x_node** tree);
char m_valmap_0_1_2_3(string& lreturn,x_node** tree);
char m_valmap_0_1_2_3_4(string& lreturn,x_node** tree);
char m_jvector(string& lreturn,x_node** tree);
char m_jvector_0_1(string& lreturn,x_node** tree);
char m_jvector_0_1_2(string& lreturn,x_node** tree);
char m_jvector_0_1_2_3(string& lreturn,x_node** tree);
char m_jvector_0_1_2_3_4(string& lreturn,x_node** tree);
char m_jdico(string& lreturn,x_node** tree);
char m_jdico_0_1(string& lreturn,x_node** tree);
char m_jmap(string& lreturn,x_node** tree);
char m_jmap_0_1(string& lreturn,x_node** tree);
char m_jmap_0_1_2(string& lreturn,x_node** tree);
char m_jmap_0_1_2_3(string& lreturn,x_node** tree);
char m_jmap_0_1_2_3_4(string& lreturn,x_node** tree);
char m_jexpression(string& lreturn,x_node** tree);
char m_aconstant(string& lreturn,x_node** tree);
char m_cut(string& lreturn,x_node** tree);
char m_fail(string& lreturn,x_node** tree);
char m_stop(string& lreturn,x_node** tree);
char m_not(string& lreturn,x_node** tree);
char m_predicate(string& lreturn,x_node** tree);
char m_predicate_0_1(string& lreturn,x_node** tree);
char m_predicatecall(string& lreturn,x_node** tree);
char m_retractcommand(string& lreturn,x_node** tree);
char m_assertcommandbefore(string& lreturn,x_node** tree);
char m_assertcommandafter(string& lreturn,x_node** tree);
char m_findallpredicate(string& lreturn,x_node** tree);
char m_findallpredicate_0_1(string& lreturn,x_node** tree);
char m_assertpredicate(string& lreturn,x_node** tree);
char m_assertpredicate_0_1(string& lreturn,x_node** tree);
char m_assertpredicate_0_2(string& lreturn,x_node** tree);
char m_assertpredicate_0_3(string& lreturn,x_node** tree);
char m_compfeat(string& lreturn,x_node** tree);
char m_compfeat_0_1(string& lreturn,x_node** tree);
char m_compfeat_0_2(string& lreturn,x_node** tree);
char m_compfeat_0_3(string& lreturn,x_node** tree);
char m_valplus(string& lreturn,x_node** tree);
char m_feat(string& lreturn,x_node** tree);
char m_feat_0_1(string& lreturn,x_node** tree);
char m_feat_0_2(string& lreturn,x_node** tree);
char m_feat_0_2_3(string& lreturn,x_node** tree);
char m_feat_0_2_3_4(string& lreturn,x_node** tree);
char m_features(string& lreturn,x_node** tree);
char m_features_0_1(string& lreturn,x_node** tree);
char m_features_0_1_2(string& lreturn,x_node** tree);
char m_features_0_1_2_3(string& lreturn,x_node** tree);
char m_features_0_1_2_3_4(string& lreturn,x_node** tree);
char m_modifcall(string& lreturn,x_node** tree);
char m_dependencyparameters(string& lreturn,x_node** tree);
char m_dependencyparameters_0_1(string& lreturn,x_node** tree);
char m_dependencyparameters_0_1_2(string& lreturn,x_node** tree);
char m_dependencyfact(string& lreturn,x_node** tree);
char m_dependency(string& lreturn,x_node** tree);
char m_dependency_0_1(string& lreturn,x_node** tree);
char m_dependency_0_1_2(string& lreturn,x_node** tree);
char m_dependency_0_3(string& lreturn,x_node** tree);
char m_dependency_0_4(string& lreturn,x_node** tree);
char m_dependance(string& lreturn,x_node** tree);
char m_dependencyresult(string& lreturn,x_node** tree);
char m_dependencyresult_0_1(string& lreturn,x_node** tree);
char m_dependencyresult_0_4(string& lreturn,x_node** tree);
char m_dependencyresult_0_4_5(string& lreturn,x_node** tree);
char m_dependencyresult_0_4_5_6(string& lreturn,x_node** tree);
char m_dependencyrule(string& lreturn,x_node** tree);
char m_dependencyrule_0_1(string& lreturn,x_node** tree);
char m_dependencyrule_0_2(string& lreturn,x_node** tree);
char m_dependencyrule_0_2_3(string& lreturn,x_node** tree);
char m_predicatevariable(string& lreturn,x_node** tree);
char m_predicatevariable_0_1(string& lreturn,x_node** tree);
char m_predicatevariable_0_1_2(string& lreturn,x_node** tree);
char m_predicatevariable_0_1_2_3(string& lreturn,x_node** tree);
char m_predicatevariable_0_4(string& lreturn,x_node** tree);
char m_predicatevariable_0_4_5(string& lreturn,x_node** tree);
char m_predicatevariable_0_4_6(string& lreturn,x_node** tree);
char m_term(string& lreturn,x_node** tree);
char m_term_0_1(string& lreturn,x_node** tree);
char m_tuple(string& lreturn,x_node** tree);
char m_pformula(string& lreturn,x_node** tree);
char m_pformula_0_1(string& lreturn,x_node** tree);
char m_pformula_0_2(string& lreturn,x_node** tree);
char m_pformula_0_2_3(string& lreturn,x_node** tree);
char m_comparepredicate(string& lreturn,x_node** tree);
char m_comparepredicate_0_1(string& lreturn,x_node** tree);
char m_affectationpredicate(string& lreturn,x_node** tree);
char m_affectationpredicate_0_1(string& lreturn,x_node** tree);
char m_predplusplus(string& lreturn,x_node** tree);
char m_pintentionvector(string& lreturn,x_node** tree);
char m_pintentionvector_0_1(string& lreturn,x_node** tree);
char m_pintentionvector_0_1_2(string& lreturn,x_node** tree);
char m_pintentionvector_0_1_3(string& lreturn,x_node** tree);
char m_pintentionvector_0_1_3_4(string& lreturn,x_node** tree);
char m_pintentionwithdouble(string& lreturn,x_node** tree);
char m_pintentionwithdouble_0_1(string& lreturn,x_node** tree);
char m_pintentionwithdouble_0_1_2(string& lreturn,x_node** tree);
char m_pintentionwithdouble_0_1_3(string& lreturn,x_node** tree);
char m_pintentionvect(string& lreturn,x_node** tree);
char m_merging(string& lreturn,x_node** tree);
char m_apredicatelist(string& lreturn,x_node** tree);
char m_apredicatelist_0_1(string& lreturn,x_node** tree);
char m_apredicatelist_0_1_2(string& lreturn,x_node** tree);
char m_apredicatelist_0_1_2_3(string& lreturn,x_node** tree);
char m_apredicatelist_0_1_2_4(string& lreturn,x_node** tree);
char m_apredicatelist_0_1_2_4_5(string& lreturn,x_node** tree);
char m_valpredicatevector(string& lreturn,x_node** tree);
char m_valpredicatevector_0_1(string& lreturn,x_node** tree);
char m_pexpression(string& lreturn,x_node** tree);
char m_predicateparameters(string& lreturn,x_node** tree);
char m_predicateparameters_0_1(string& lreturn,x_node** tree);
char m_predicateparameters_0_1_2(string& lreturn,x_node** tree);
char m_mapmerging(string& lreturn,x_node** tree);
char m_mappredicatelist(string& lreturn,x_node** tree);
char m_mappredicatelist_0_1(string& lreturn,x_node** tree);
char m_mappredicatelist_0_1_2(string& lreturn,x_node** tree);
char m_mappredicatelist_0_1_2_3(string& lreturn,x_node** tree);
char m_mappredicatelist_0_1_2_4(string& lreturn,x_node** tree);
char m_valmappredicate(string& lreturn,x_node** tree);
char m_valmappredicate_0_1(string& lreturn,x_node** tree);
char m_predicatedico(string& lreturn,x_node** tree);
char m_predicateoperator(string& lreturn,x_node** tree);
char m_predicatesep(string& lreturn,x_node** tree);
char m_predicatesep_0_1(string& lreturn,x_node** tree);
char m_predicateexpression(string& lreturn,x_node** tree);
char m_predicateexpression_0_1(string& lreturn,x_node** tree);
char m_predicateexpression_0_1_2(string& lreturn,x_node** tree);
char m_predicateexpression_0_1_2_3(string& lreturn,x_node** tree);
char m_predicateexpression_0_4(string& lreturn,x_node** tree);
char m_predicateexpression_0_4_5(string& lreturn,x_node** tree);
char m_predicatedefinition(string& lreturn,x_node** tree);
char m_predicatedefinition_0_1(string& lreturn,x_node** tree);
char m_predicatefact(string& lreturn,x_node** tree);
char m_dcgword(string& lreturn,x_node** tree);
char m_finaltoken(string& lreturn,x_node** tree);
char m_finaltoken_0_1(string& lreturn,x_node** tree);
char m_finaltoken_0_1_2(string& lreturn,x_node** tree);
char m_finaltoken_0_1_2_3(string& lreturn,x_node** tree);
char m_finaltoken_0_1_2_4(string& lreturn,x_node** tree);
char m_finaltoken_0_1_2_4_5(string& lreturn,x_node** tree);
char m_finaldcg(string& lreturn,x_node** tree);
char m_dcg(string& lreturn,x_node** tree);
char m_dcg_0_1(string& lreturn,x_node** tree);
char m_dcg_0_1_2(string& lreturn,x_node** tree);
char m_dcg_0_1_3(string& lreturn,x_node** tree);
char m_dcg_0_1_3_4(string& lreturn,x_node** tree);
char m_dcg_0_5(string& lreturn,x_node** tree);
char m_dcg_0_5_6(string& lreturn,x_node** tree);
char m_achar(string& lreturn,x_node** tree);
char m_factvalue(string& lreturn,x_node** tree);
char m_factparameters(string& lreturn,x_node** tree);
char m_factparameters_0_1(string& lreturn,x_node** tree);
char m_factparameters_0_1_2(string& lreturn,x_node** tree);
char m_rawfact(string& lreturn,x_node** tree);
char m_rawfact_0_1(string& lreturn,x_node** tree);
char m_facts(string& lreturn,x_node** tree);
char m_taskelltail(string& lreturn,x_node** tree);
char m_taskelltail_0_1(string& lreturn,x_node** tree);
char m_taskellexpression(string& lreturn,x_node** tree);
char m_taskellvector(string& lreturn,x_node** tree);
char m_taskellvector_0_1(string& lreturn,x_node** tree);
char m_taskellvector_0_1_2(string& lreturn,x_node** tree);
char m_taskellvector_0_1_2_3(string& lreturn,x_node** tree);
char m_taskellvector_0_1_2_3_4(string& lreturn,x_node** tree);
char m_taskellvector_0_1_2_5(string& lreturn,x_node** tree);
char m_taskellmaptail(string& lreturn,x_node** tree);
char m_taskellmaptail_0_1(string& lreturn,x_node** tree);
char m_taskellkeymap(string& lreturn,x_node** tree);
char m_taskelldico(string& lreturn,x_node** tree);
char m_taskellmap(string& lreturn,x_node** tree);
char m_taskellmap_0_1(string& lreturn,x_node** tree);
char m_taskellmap_0_1_2(string& lreturn,x_node** tree);
char m_taskellmap_0_1_2_3(string& lreturn,x_node** tree);
char m_taskellmap_0_1_2_3_4(string& lreturn,x_node** tree);
char m_taskellmap_0_1_2_5(string& lreturn,x_node** tree);
char m_static(string& lreturn,x_node** tree);
char m_letkeyword(string& lreturn,x_node** tree);
char m_letkeyword_0_1(string& lreturn,x_node** tree);
char m_let(string& lreturn,x_node** tree);
char m_let_0_1(string& lreturn,x_node** tree);
char m_let_0_2(string& lreturn,x_node** tree);
char m_letmin(string& lreturn,x_node** tree);
char m_letmin_0_1(string& lreturn,x_node** tree);
char m_hvalmaptail(string& lreturn,x_node** tree);
char m_range(string& lreturn,x_node** tree);
char m_range_0_1(string& lreturn,x_node** tree);
char m_range_0_1_2(string& lreturn,x_node** tree);
char m_range_0_1_3(string& lreturn,x_node** tree);
char m_range_0_1_3_4(string& lreturn,x_node** tree);
char m_hdeclaration(string& lreturn,x_node** tree);
char m_hdeclaration_0_1(string& lreturn,x_node** tree);
char m_hdeclaration_0_1_2(string& lreturn,x_node** tree);
char m_hdeclaration_0_1_2_3(string& lreturn,x_node** tree);
char m_subtaskelldeclaration(string& lreturn,x_node** tree);
char m_maybe(string& lreturn,x_node** tree);
char m_declarationtaskell(string& lreturn,x_node** tree);
char m_declarationtaskell_0_1(string& lreturn,x_node** tree);
char m_declarationtaskell_0_2(string& lreturn,x_node** tree);
char m_declarationtaskell_0_2_3(string& lreturn,x_node** tree);
char m_declarationtaskell_0_2_3_4(string& lreturn,x_node** tree);
char m_declarationtaskell_0_2_3_4_5(string& lreturn,x_node** tree);
char m_declarationtaskell_0_2_3_6(string& lreturn,x_node** tree);
char m_taskelldeclaration(string& lreturn,x_node** tree);
char m_taskell(string& lreturn,x_node** tree);
char m_taskell_0_1(string& lreturn,x_node** tree);
char m_taskell_0_1_2(string& lreturn,x_node** tree);
char m_taskell_0_1_2_3(string& lreturn,x_node** tree);
char m_taskell_0_1_2_4(string& lreturn,x_node** tree);
char m_taskell_0_1_2_4_5(string& lreturn,x_node** tree);
char m_taskell_0_7(string& lreturn,x_node** tree);
char m_otherwise(string& lreturn,x_node** tree);
char m_guard(string& lreturn,x_node** tree);
char m_guard_0_1(string& lreturn,x_node** tree);
char m_hlambda(string& lreturn,x_node** tree);
char m_hlambda_0_1(string& lreturn,x_node** tree);
char m_hlambda_0_2(string& lreturn,x_node** tree);
char m_hlambda_0_2_4(string& lreturn,x_node** tree);
char m_hlambda_0_2_4_5(string& lreturn,x_node** tree);
char m_hboollambda(string& lreturn,x_node** tree);
char m_composefunction(string& lreturn,x_node** tree);
char m_composefunction_0_1(string& lreturn,x_node** tree);
char m_composefunction_0_2(string& lreturn,x_node** tree);
char m_composefunction_0_2_3(string& lreturn,x_node** tree);
char m_hfunction(string& lreturn,x_node** tree);
char m_hfunction_0_1(string& lreturn,x_node** tree);
char m_lfold(string& lreturn,x_node** tree);
char m_rfold(string& lreturn,x_node** tree);
char m_lscan(string& lreturn,x_node** tree);
char m_rscan(string& lreturn,x_node** tree);
char m_fold(string& lreturn,x_node** tree);
char m_folding(string& lreturn,x_node** tree);
char m_folding_0_1(string& lreturn,x_node** tree);
char m_folding_0_2(string& lreturn,x_node** tree);
char m_taskellalloperator(string& lreturn,x_node** tree);
char m_taskellboolcheck(string& lreturn,x_node** tree);
char m_lfold1(string& lreturn,x_node** tree);
char m_rfold1(string& lreturn,x_node** tree);
char m_lscan1(string& lreturn,x_node** tree);
char m_rscan1(string& lreturn,x_node** tree);
char m_fold1(string& lreturn,x_node** tree);
char m_folding1(string& lreturn,x_node** tree);
char m_filterkeyword(string& lreturn,x_node** tree);
char m_takekeyword(string& lreturn,x_node** tree);
char m_inverted(string& lreturn,x_node** tree);
char m_taskcomparison(string& lreturn,x_node** tree);
char m_mapping(string& lreturn,x_node** tree);
char m_mapping_0_1(string& lreturn,x_node** tree);
char m_filtering(string& lreturn,x_node** tree);
char m_filtering_0_1(string& lreturn,x_node** tree);
char m_taskellalltrue(string& lreturn,x_node** tree);
char m_taskellboolchecking(string& lreturn,x_node** tree);
char m_taking(string& lreturn,x_node** tree);
char m_zipping(string& lreturn,x_node** tree);
char m_zipping_0_1(string& lreturn,x_node** tree);
char m_zipping_0_2(string& lreturn,x_node** tree);
char m_pairing(string& lreturn,x_node** tree);
char m_cycle(string& lreturn,x_node** tree);
char m_cycling(string& lreturn,x_node** tree);
char m_repeating(string& lreturn,x_node** tree);
char m_flipping(string& lreturn,x_node** tree);
char m_taskellcaseotherwise(string& lreturn,x_node** tree);
char m_taskellcaseotherwise_0_1(string& lreturn,x_node** tree);
char m_taskellresult(string& lreturn,x_node** tree);
char m_taskellresult_0_1(string& lreturn,x_node** tree);
char m_taskellcase(string& lreturn,x_node** tree);
char m_taskellcase_0_1(string& lreturn,x_node** tree);
char m_taskellcase_0_1_2(string& lreturn,x_node** tree);
char m_taskellcase_0_3(string& lreturn,x_node** tree);
char m_curryingleft(string& lreturn,x_node** tree);
char m_curryingleft_0_1(string& lreturn,x_node** tree);
char m_curryingright(string& lreturn,x_node** tree);
char m_currying(string& lreturn,x_node** tree);
char m_currying_0_1(string& lreturn,x_node** tree);
char m_hfunctionoperation(string& lreturn,x_node** tree);
char m_hfunctionoperation_0_1(string& lreturn,x_node** tree);
char m_hfunctionoperation_0_2(string& lreturn,x_node** tree);
char m_hfunctioncall(string& lreturn,x_node** tree);
char m_hfunctioncall_0_1(string& lreturn,x_node** tree);
char m_hfunctioncall_0_2(string& lreturn,x_node** tree);
char m_hfunctioncall_0_2_3(string& lreturn,x_node** tree);
char m_hoperator(string& lreturn,x_node** tree);
char m_hmetafunctions(string& lreturn,x_node** tree);
char m_hcompose(string& lreturn,x_node** tree);
char m_hcompose_0_1(string& lreturn,x_node** tree);
char m_hcomposecall(string& lreturn,x_node** tree);
char m_hoper(string& lreturn,x_node** tree);
char m_hoperation(string& lreturn,x_node** tree);
char m_negcall(string& lreturn,x_node** tree);
char m_hitem(string& lreturn,x_node** tree);
char m_hnegated(string& lreturn,x_node** tree);
char m_hmultiply(string& lreturn,x_node** tree);
char m_hmultiply_0_2(string& lreturn,x_node** tree);
char m_hoperations(string& lreturn,x_node** tree);
char m_hoperations_0_1(string& lreturn,x_node** tree);
char m_hoperations_0_1_2(string& lreturn,x_node** tree);
char m_hoperations_0_5(string& lreturn,x_node** tree);
char m_hcomparator(string& lreturn,x_node** tree);
char m_hcomparison(string& lreturn,x_node** tree);
char m_hcompare(string& lreturn,x_node** tree);
char m_hcompare_0_1(string& lreturn,x_node** tree);
char m_hcompare_0_2(string& lreturn,x_node** tree);
char m_hcompare_0_2_3(string& lreturn,x_node** tree);
char m_hforcecompare(string& lreturn,x_node** tree);
char m_hforcecompare_0_1(string& lreturn,x_node** tree);
char m_hoptionalboolean(string& lreturn,x_node** tree);
char m_hoptionalboolean_0_1(string& lreturn,x_node** tree);
char m_hbooleanexpression(string& lreturn,x_node** tree);
char m_hbooleanexpression_0_1(string& lreturn,x_node** tree);
char m_hbooleanexpression_0_2(string& lreturn,x_node** tree);
char m_hbooleanexpression_0_2_3(string& lreturn,x_node** tree);
char m_hbooleanexpression_0_2_3_4(string& lreturn,x_node** tree);
char m_hforcebooleanexpression(string& lreturn,x_node** tree);
char m_hbloc(string& lreturn,x_node** tree);
char m_whereexpression(string& lreturn,x_node** tree);
char m_whereexpression_0_1(string& lreturn,x_node** tree);
char m_whereexpression_0_1_2(string& lreturn,x_node** tree);
char m_whereexpression_0_1_2_3(string& lreturn,x_node** tree);
char m_whereexpression_0_1_2_3_4(string& lreturn,x_node** tree);
char m_whereexpression_0_1_2_3_4_5(string& lreturn,x_node** tree);
char m_whereexpression_0_6(string& lreturn,x_node** tree);
char m_whereexpression_0_6_7(string& lreturn,x_node** tree);
char m_whereexpression_0_6_7_8(string& lreturn,x_node** tree);
char m_whereexpression_0_6_7_8_9(string& lreturn,x_node** tree);
char m_hinexpression(string& lreturn,x_node** tree);
char m_notadeclaration(string& lreturn,x_node** tree);
char m_deriving(string& lreturn,x_node** tree);
char m_deriving_0_1(string& lreturn,x_node** tree);
char m_deriving_0_1_2(string& lreturn,x_node** tree);
char m_subdeclaration(string& lreturn,x_node** tree);
char m_subdata(string& lreturn,x_node** tree);
char m_subdata_0_1(string& lreturn,x_node** tree);
char m_subdata_0_1_2(string& lreturn,x_node** tree);
char m_hdatadeclaration(string& lreturn,x_node** tree);
char m_hdatadeclaration_0_1(string& lreturn,x_node** tree);
char m_hdatadeclaration_0_1_2(string& lreturn,x_node** tree);
char m_hdatadeclaration_0_1_2_3(string& lreturn,x_node** tree);
char m_hdata(string& lreturn,x_node** tree);
char m_hdata_0_1(string& lreturn,x_node** tree);
char m_hdata_0_1_2(string& lreturn,x_node** tree);
char m_hdata_0_1_2_3(string& lreturn,x_node** tree);
char m_hdata_0_1_2_3_4(string& lreturn,x_node** tree);
char m_hdata_0_1_2_5(string& lreturn,x_node** tree);
char m_hontology(string& lreturn,x_node** tree);
char m_hontology_0_1(string& lreturn,x_node** tree);
char m_hontology_0_1_2(string& lreturn,x_node** tree);
char m_hconcept(string& lreturn,x_node** tree);
char m_conceptfunction(string& lreturn,x_node** tree);
char m_returntaskelldeclaration(string& lreturn,x_node** tree);
char m_assignfield(string& lreturn,x_node** tree);
char m_dataassignment(string& lreturn,x_node** tree);
char m_dataassignment_0_1(string& lreturn,x_node** tree);
char m_dataassignment_0_1_2(string& lreturn,x_node** tree);
char m_hrange(string& lreturn,x_node** tree);
char m_hrange_0_1(string& lreturn,x_node** tree);
char m_hrange_0_1_2(string& lreturn,x_node** tree);
char m_hrange_0_3(string& lreturn,x_node** tree);
char m_hrange_0_3_4(string& lreturn,x_node** tree);
char m_hrange_0_3_4_5(string& lreturn,x_node** tree);
char m_hrange_0_3_4_5_6(string& lreturn,x_node** tree);
char m_hrange_0_3_4_5_6_7(string& lreturn,x_node** tree);
char m_hrange_0_3_4_5_6_7_8(string& lreturn,x_node** tree);
char m_telque(string& lreturn,x_node** tree);
char m_telque_0_1(string& lreturn,x_node** tree);
char m_telque_0_1_2(string& lreturn,x_node** tree);
char m_telque_0_1_2_3(string& lreturn,x_node** tree);
char m_telque_0_1_2_4(string& lreturn,x_node** tree);
char m_telque_0_1_2_4_5(string& lreturn,x_node** tree);
char m_telque_0_1_2_4_5_6(string& lreturn,x_node** tree);
char m_telque_0_1_2_7(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_8(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_8_9(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_8_9_10(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_8_9_10_11(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_8_12(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_8_12_13(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_15(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_15_16(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18_19(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18_20(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18_20_21(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18_20_21_22(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18_20_21_22_23(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18_20_21_24(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18_20_21_24_25(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18_20_21_24_25_26(string& lreturn,x_node** tree);
char m_telque_0_1_2_7_14_17_18_20_21_24_25_26_27(string& lreturn,x_node** tree);
char m_subtelque(string& lreturn,x_node** tree);
char m_subtelque_0_1(string& lreturn,x_node** tree);
char m_subtelque_0_1_2(string& lreturn,x_node** tree);
char m_parenthetic(string& lreturn,x_node** tree);
char m_expression(string& lreturn,x_node** tree);
char m_expression_0_1(string& lreturn,x_node** tree);
char m_expression_0_1_2(string& lreturn,x_node** tree);
char m_expression_0_3(string& lreturn,x_node** tree);
char m_expressions(string& lreturn,x_node** tree);
char m_expressions_0_2(string& lreturn,x_node** tree);
char m_expressions_0_2_3(string& lreturn,x_node** tree);
char m_comparing(string& lreturn,x_node** tree);
char m_comparing_0_1(string& lreturn,x_node** tree);
char m_wnexpressions(string& lreturn,x_node** tree);
char m_wnexpressions_0_1(string& lreturn,x_node** tree);
char m_wnexpressions_0_3(string& lreturn,x_node** tree);
char m_wnexpressions_0_3_4(string& lreturn,x_node** tree);
char m_nocomparisonexpressions(string& lreturn,x_node** tree);
char m_nocomparisonnorinexpressions(string& lreturn,x_node** tree);
char m_nocomparisonnorinexpressions_0_3(string& lreturn,x_node** tree);
char m_numbers(string& lreturn,x_node** tree);
char m_numbers_0_1(string& lreturn,x_node** tree);
char m_negated(string& lreturn,x_node** tree);
char m_abool(string& lreturn,x_node** tree);
char m_blocfor(string& lreturn,x_node** tree);
char m_blocfor_0_1(string& lreturn,x_node** tree);
char m_blocfor_0_2(string& lreturn,x_node** tree);
char m_blocfor_0_2_3(string& lreturn,x_node** tree);
char m_localif(string& lreturn,x_node** tree);
char m_localif_0_1(string& lreturn,x_node** tree);
char m_localif_0_1_2(string& lreturn,x_node** tree);
char m_declarationfor(string& lreturn,x_node** tree);
char m_declarationfor_0_1(string& lreturn,x_node** tree);
char m_declarationfor_0_2(string& lreturn,x_node** tree);
char m_optionalboolean(string& lreturn,x_node** tree);
char m_booleanexpression(string& lreturn,x_node** tree);
char m_booleanexpression_0_1(string& lreturn,x_node** tree);
char m_booleanexpression_0_2(string& lreturn,x_node** tree);
char m_booleanexpression_0_2_3(string& lreturn,x_node** tree);
char m_booleanexpression_0_2_3_4(string& lreturn,x_node** tree);
char m_arange(string& lreturn,x_node** tree);
char m_arange_0_1(string& lreturn,x_node** tree);
char m_arange_0_1_2(string& lreturn,x_node** tree);
char m_arange_0_1_2_3(string& lreturn,x_node** tree);
char m_iftest(string& lreturn,x_node** tree);
char m_iftest_0_1(string& lreturn,x_node** tree);
char m_iftest_0_2(string& lreturn,x_node** tree);
char m_iftest_0_3(string& lreturn,x_node** tree);
char m_iftest_0_3_4(string& lreturn,x_node** tree);
char m_testelif(string& lreturn,x_node** tree);
char m_loop(string& lreturn,x_node** tree);
char m_doloop(string& lreturn,x_node** tree);
char m_for(string& lreturn,x_node** tree);
char m_for_0_1(string& lreturn,x_node** tree);
char m_forin(string& lreturn,x_node** tree);
char m_forin_0_1(string& lreturn,x_node** tree);
char m_forin_0_1_2(string& lreturn,x_node** tree);
char m_forin_0_1_2_3(string& lreturn,x_node** tree);
char m_forin_0_4(string& lreturn,x_node** tree);
char m_namespace(string& lreturn,x_node** tree);
char m_switch(string& lreturn,x_node** tree);
char m_switch_0_2(string& lreturn,x_node** tree);
char m_trycatch(string& lreturn,x_node** tree);
char m_trycatch_0_1(string& lreturn,x_node** tree);
char m_trycatch_0_1_2(string& lreturn,x_node** tree);
char m_trycatch_0_1_2_3(string& lreturn,x_node** tree);
char m_trycatch_0_4(string& lreturn,x_node** tree);
char m_trycatch_0_4_5(string& lreturn,x_node** tree);
char m_trymaybe(string& lreturn,x_node** tree);
char m_testswitch(string& lreturn,x_node** tree);
char m_testswitch_0_1(string& lreturn,x_node** tree);
char m_catchon(string& lreturn,x_node** tree);
char m_default(string& lreturn,x_node** tree);
char m_parentheticexpression(string& lreturn,x_node** tree);
char m_parentheticexpressions(string& lreturn,x_node** tree);
char m_oneparenthetic(string& lreturn,x_node** tree);
char m_oneparenthetic_0_1(string& lreturn,x_node** tree);
char m_parenthetique(string& lreturn,x_node** tree);
char m_tagexpression(string& lreturn,x_node** tree);
char m_tagexpressions(string& lreturn,x_node** tree);
char m_onetag(string& lreturn,x_node** tree);
char m_onetag_0_1(string& lreturn,x_node** tree);
char m_tag(string& lreturn,x_node** tree);
char m_tlvariable(string& lreturn,x_node** tree);
char m_tlatom(string& lreturn,x_node** tree);
char m_tlquote(string& lreturn,x_node** tree);
char m_tlquote_0_1(string& lreturn,x_node** tree);
char m_tlkey(string& lreturn,x_node** tree);
char m_tlkey_0_1(string& lreturn,x_node** tree);
char m_tlkeys(string& lreturn,x_node** tree);
char m_tlkeys_0_1(string& lreturn,x_node** tree);
char m_tlist(string& lreturn,x_node** tree);
char m_tlist_0_1(string& lreturn,x_node** tree);
char m_tlist_0_1_2(string& lreturn,x_node** tree);
char m_tlist_0_1_2_3(string& lreturn,x_node** tree);
char m_tlist_0_1_2_3_4(string& lreturn,x_node** tree);
char m_tlist_0_1_2_5(string& lreturn,x_node** tree);
char m_tlist_0_1_2_7(string& lreturn,x_node** tree);
char m_tamgulisp(string& lreturn,x_node** tree);
char m_tamgupurelisp(string& lreturn,x_node** tree);
char m_ameta(string& lreturn,x_node** tree);
char m_ameta_0_1(string& lreturn,x_node** tree);
char m_ameta_0_1_2(string& lreturn,x_node** tree);
char m_ameta_0_1_2_3(string& lreturn,x_node** tree);
char m_ameta_0_4(string& lreturn,x_node** tree);
char m_amulti(string& lreturn,x_node** tree);
char m_asimple(string& lreturn,x_node** tree);
char m_atoken(string& lreturn,x_node** tree);
char m_atoken_0_2(string& lreturn,x_node** tree);
char m_anitem(string& lreturn,x_node** tree);
char m_dj(string& lreturn,x_node** tree);
char m_aoptional(string& lreturn,x_node** tree);
char m_aoptitem(string& lreturn,x_node** tree);
char m_akleene(string& lreturn,x_node** tree);
char m_anelement(string& lreturn,x_node** tree);
char m_anelement_0_1(string& lreturn,x_node** tree);
char m_anelement_0_1_2(string& lreturn,x_node** tree);
char m_anitemelement(string& lreturn,x_node** tree);
char m_anitemelement_0_1(string& lreturn,x_node** tree);
char m_body(string& lreturn,x_node** tree);
char m_body_0_1(string& lreturn,x_node** tree);
char m_body_0_1_2(string& lreturn,x_node** tree);
char m_body_0_1_2_3(string& lreturn,x_node** tree);
char m_rule(string& lreturn,x_node** tree);
char m_rule_0_1(string& lreturn,x_node** tree);
char m_rule_0_1_2(string& lreturn,x_node** tree);
char m_subgram(string& lreturn,x_node** tree);
char m_subgram_0_1(string& lreturn,x_node** tree);
char m_subgram_0_1_2(string& lreturn,x_node** tree);
char m_subgram_0_1_2_3(string& lreturn,x_node** tree);
char m_rules(string& lreturn,x_node** tree);
char m_non(string& lreturn,x_node** tree);
char m_kleene(string& lreturn,x_node** tree);
char m_kleene_0_1(string& lreturn,x_node** tree);
char m_kleene_0_2(string& lreturn,x_node** tree);
char m_kleene_0_2_3(string& lreturn,x_node** tree);
char m_any(string& lreturn,x_node** tree);
char m_meta(string& lreturn,x_node** tree);
char m_alabel(string& lreturn,x_node** tree);
char m_alabel_0_1(string& lreturn,x_node** tree);
char m_orlabels(string& lreturn,x_node** tree);
char m_orlabels_0_1(string& lreturn,x_node** tree);
char m_orlabels_0_1_2(string& lreturn,x_node** tree);
char m_andlabels(string& lreturn,x_node** tree);
char m_andlabels_0_1(string& lreturn,x_node** tree);
char m_label(string& lreturn,x_node** tree);
char m_lemma(string& lreturn,x_node** tree);
char m_callmatch(string& lreturn,x_node** tree);
char m_callmatch_0_1(string& lreturn,x_node** tree);
char m_token(string& lreturn,x_node** tree);
char m_token_0_1(string& lreturn,x_node** tree);
char m_token_0_2(string& lreturn,x_node** tree);
char m_listoftokens(string& lreturn,x_node** tree);
char m_listoftokens_0_1(string& lreturn,x_node** tree);
char m_listoftokens_0_1_2(string& lreturn,x_node** tree);
char m_listoftokens_0_3(string& lreturn,x_node** tree);
char m_sequenceoftokens(string& lreturn,x_node** tree);
char m_sequenceoftokens_0_1(string& lreturn,x_node** tree);
char m_optionaltokens(string& lreturn,x_node** tree);
char m_optionaltokens_0_1(string& lreturn,x_node** tree);
char m_removetokens(string& lreturn,x_node** tree);
char m_removetokens_0_1(string& lreturn,x_node** tree);
char m_annotation(string& lreturn,x_node** tree);
char m_annotation_0_1(string& lreturn,x_node** tree);
char m_annotation_0_1_2(string& lreturn,x_node** tree);
char m_annotation_0_3(string& lreturn,x_node** tree);
char m_ruletype(string& lreturn,x_node** tree);
char m_annotationrule(string& lreturn,x_node** tree);
char m_annotationrule_0_1(string& lreturn,x_node** tree);
char m_annotationrule_0_2(string& lreturn,x_node** tree);
char m_annotationrule_0_4(string& lreturn,x_node** tree);
char m_annotationrule_0_4_6(string& lreturn,x_node** tree);
char m_annotationrule_0_4_6_7(string& lreturn,x_node** tree);