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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
//! A module consists of production utilities which are helper utilities to write the grammar for the parser.
//!
//! Each production utility represent a defined rule of operation for a set symbols.
//! As an example, non terminal production utility [Concat], represents concatenation associated symbols,
//! where as, [Union], will use the first production match from the set of alternative symbols.
//! The terminal utilities like [TokenField], [TokenFieldSet], will match the input token received from the tokenizer.
//! where the production utilities like [RegexField]
//! [PunctuationsField], [ConstantField] will match string values.
//! Therefore the former utilities can be used to create a [LexerlessParser](crate::LexerlessParser)
//! which does not need to define a tokenizer separately.
//!
//! # Example
//!
//! Following a grammar implementation for JSON parser
//!
//! ```
//! use lang_pt::production::ProductionBuilder;
//! use lang_pt::{
//! lexeme::{Pattern, Punctuations},
//! production::{Concat, EOFProd, Node, SeparatedList, TokenField, TokenFieldSet, Union},
//! DefaultParser, NodeImpl, TokenImpl, Tokenizer,
//! };
//! use std::rc::Rc;
//!
//! # #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy)]
//! # pub enum JSONToken {
//! # EOF,
//! # String,
//! # Space,
//! # Colon,
//! # Comma,
//! # Number,
//! # Constant,
//! # OpenBrace,
//! # CloseBrace,
//! # OpenBracket,
//! # CloseBracket,
//! # }
//!
//! #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy)]
//! pub enum JSONNode {
//! Key,
//! String,
//! Number,
//! Constant,
//! Array,
//! Object,
//! Item,
//! Main,
//! NULL,
//! }
//!
//! # impl TokenImpl for JSONToken {
//! # fn eof() -> Self {
//! # JSONToken::EOF
//! # }
//! # fn is_structural(&self) -> bool {
//! # match self {
//! # JSONToken::Space => false,
//! # _ => true,
//! # }
//! # }
//! # }
//! impl NodeImpl for JSONNode {
//! fn null() -> Self {
//! JSONNode::NULL
//! }
//! }
//!
//! # let punctuations = Rc::new(
//! # Punctuations::new(vec![
//! # ("{", JSONToken::OpenBrace),
//! # ("}", JSONToken::CloseBrace),
//! # ("[", JSONToken::OpenBracket),
//! # ("]", JSONToken::CloseBracket),
//! # (",", JSONToken::Comma),
//! # (":", JSONToken::Colon),
//! # ])
//! # .unwrap(),
//! # );
//! #
//! # let dq_string = Rc::new(
//! # Pattern::new(
//! # JSONToken::String,
//! # r#"^"([^"\\\r\n]|(\\[^\S\r\n]*[\r\n][^\S\r\n]*)|\\.)*""#, //["\\bfnrtv]
//! # )
//! # .unwrap(),
//! # );
//! #
//! # let lex_space = Rc::new(Pattern::new(JSONToken::Space, r"^\s+").unwrap());
//! # let number_literal = Rc::new(
//! # Pattern::new(JSONToken::Number, r"^([0-9]+)(\.[0-9]+)?([eE][+-]?[0-9]+)?").unwrap(),
//! # );
//! # let const_literal = Rc::new(Pattern::new(JSONToken::Constant, r"^(true|false|null)").unwrap());
//! #
//! # let tokenizer=Tokenizer::new(vec![
//! # lex_space,
//! # punctuations,
//! # dq_string,
//! # number_literal,
//! # const_literal,
//! # ]);
//!
//! let eof = Rc::new(EOFProd::new(None));
//!
//! let json_key = Rc::new(TokenField::new(JSONToken::String, Some(JSONNode::Key)));
//!
//! let json_primitive_values = Rc::new(TokenFieldSet::new(vec![
//! (JSONToken::String, Some(JSONNode::String)),
//! (JSONToken::Constant, Some(JSONNode::Constant)),
//! (JSONToken::Number, Some(JSONNode::Number)),
//! ]));
//!
//!
//! let hidden_open_brace = Rc::new(TokenField::new(JSONToken::OpenBrace, None));
//! let hidden_close_brace = Rc::new(TokenField::new(JSONToken::CloseBrace, None));
//! let hidden_open_bracket = Rc::new(TokenField::new(JSONToken::OpenBracket, None));
//! let hidden_close_bracket = Rc::new(TokenField::new(JSONToken::CloseBracket, None));
//! let hidden_comma = Rc::new(TokenField::new(JSONToken::Comma, None));
//! let hidden_colon = Rc::new(TokenField::new(JSONToken::Colon, None));
//!
//! let json_object = Rc::new(Concat::init("json_object"));
//! let json_value_union = Rc::new(Union::init("json_value_union"));
//!
//! let json_object_item = Rc::new(Concat::new(
//! "json_object_item",
//! vec![
//! json_key.clone(),
//! hidden_colon.clone(),
//! json_value_union.clone(),
//! ],
//! ));
//!
//! let json_object_item_node = Rc::new(Node::new(&json_object_item, JSONNode::Item));
//!
//! let json_object_item_list =
//! Rc::new(SeparatedList::new(&json_object_item_node, &hidden_comma, true).into_nullable());
//! let json_array_item_list =
//! Rc::new(SeparatedList::new(&json_value_union, &hidden_comma, true).into_nullable());
//!
//! let json_array_node = Rc::new(
//! Concat::new(
//! "json_array",
//! vec![
//! hidden_open_bracket.clone(),
//! json_array_item_list.clone(),
//! hidden_close_bracket.clone(),
//! ],
//! )
//! .into_node(JSONNode::Array),
//! );
//!
//! let json_object_node = Rc::new(Node::new(&json_object, JSONNode::Object));
//!
//! json_value_union
//! .set_symbols(vec![
//! json_primitive_values.clone(),
//! json_object_node.clone(),
//! json_array_node.clone(),
//! ])
//! .unwrap();
//!
//! json_object
//! .set_symbols(vec![
//! hidden_open_brace.clone(),
//! json_object_item_list,
//! hidden_close_brace.clone(),
//! ])
//! .unwrap();
//!
//! let main = Rc::new(Concat::new("root", vec![json_value_union, eof]));
//! let main_node = Rc::new(Node::new(&main, JSONNode::Main));
//!
//! let parser = DefaultParser::new(Rc::new(tokenizer), main_node).unwrap();
//! let code_part = r#"{"name":"John", "age":30, "car":null}"#;
//! let tree_list = parser.parse(code_part.as_bytes()).unwrap();
//! tree_list[0].print().unwrap();
//! /*
//! Main # 0-37
//! └─ Object # 0-37
//! ├─ Item # 1-14
//! │ ├─ Key # 1-7
//! │ └─ String # 8-14
//! ├─ Item # 16-24
//! │ ├─ Key # 16-21
//! │ └─ Number # 22-24
//! └─ Item # 26-36
//! ├─ Key # 26-31
//! └─ Constant # 32-36
//! */
//!
//! ```
use OnceCell;
use Regex;
use ;
use crate::;
/// A terminal symbol which matches a given token with the input.
/// A terminal symbol which matches any one token from the provided set of tokens.
/// A terminal symbol which matches the provided regex expression with the input.
///
/// This symbol can be used while using a lexerless parsing.
/// A terminal symbol which matches the provided value with the input.
///
/// This symbol can only be used while using a lexerless parsing.
/// A terminal symbol which matches a set of punctuation field with the input.
///
/// This symbol can only be used while using a lexerless parsing.
/// A terminal symbol which matches a set of string values with the input.
///
/// This symbol can be used while using a lexerless parsing.
/// A null production symbol for the grammar.
/// A terminal component which matches End of File(EOF) symbol.
/// A non-terminal production utility to derive concatenation of production symbols.
///
/// The production utility will try to parse all children symbols in series.
/// Once all the child productions are successfully parsed, it will return a vec of flattened tree nodes([ASTNode]).
///
/// The general form for union production is
/// E -> X<sub>1</sub> X<sub>2</sub> X<sub>3</sub>... X<sub>n</sub>.
/// where, X<sub>i</sub>, i=1..n can be a non-terminal or terminal production.
/// # Example
/// ```
/// use lang_pt::{
/// production::{Concat, ConstantField, EOFProd, Node, PunctuationsField, RegexField},
/// LexerlessParser, NodeImpl,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// pub enum NodeValue {
/// ID,
/// Add,
/// Sub,
/// Mul,
/// Div,
/// NULL,
/// Expr,
/// Root,
/// }
///
/// impl NodeImpl for NodeValue {
/// fn null() -> Self { Self::NULL }
/// }
/// let eof = Rc::new(EOFProd::new(None));
/// let id = Rc::new(RegexField::new(r#"^[_$a-zA-Z][_$\w]*"#, Some(NodeValue::ID)).unwrap());
/// let operators = Rc::new(
/// PunctuationsField::new(vec![
/// ("+", Some(NodeValue::Add)),
/// ("-", Some(NodeValue::Sub)),
/// ("*", Some(NodeValue::Mul)),
/// ("/", Some(NodeValue::Div)),
/// ])
/// .unwrap(),
/// );
/// let open_paren = Rc::new(ConstantField::new("(", None));
/// let close_paren = Rc::new(ConstantField::new(")", None));
///
/// let expression = Rc::new(Concat::new(
/// "Expression",
/// vec![id.clone(), operators.clone(), id.clone()],
/// ));
///
/// let expression_node = Rc::new(Node::new(&expression, NodeValue::Expr));
///
/// let parenthesis_expression = Rc::new(Concat::new(
/// "Parenthesis_Expression",
/// vec![
/// open_paren.clone(),
/// expression_node.clone(),
/// close_paren.clone(),
/// ],
/// ));
///
/// let root = Rc::new(Concat::new("main", vec![parenthesis_expression, eof]));
///
/// let root_node = Rc::new(Node::new(&root, NodeValue::Root));
///
/// let parser = LexerlessParser::new(root_node).unwrap();
///
/// let tree_list = parser.parse(b"(ax+by)").unwrap();
/// tree_list.last().unwrap().print().unwrap();
/// /*
/// Root # 0-7
/// └─ Expr # 1-6
/// ├─ ID # 1-3
/// ├─ Add # 3-4
/// └─ ID # 4-6
/// */
/// ```
/// A non-terminal utility to implement alternative derivations of productions.
///
/// The production utility will try to parse each associated symbol and return first successful parsed tree.
///
/// The general form for union production is
/// X -> Y<sub>1</sub> | Y<sub>2</sub> | Y<sub>3</sub>|... Y<sub>n</sub>.
/// where, Y<sub>i</sub>, i=1..n can be a non-terminal or terminal production.
///
/// # Example
/// ```
/// use lang_pt::production::{EOFProd, Node};
/// use lang_pt::NodeImpl;
/// use lang_pt::{
/// production::{Concat, ConstantField, RegexField, Union},
/// LexerlessParser,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// enum NodeValue {
/// ID,
/// Add,
/// Sub,
/// Mul,
/// Div,
/// NULL,
/// Root
/// }
///
/// impl NodeImpl for NodeValue {
/// fn null() -> Self { Self::NULL }
/// }
/// let eof = Rc::new(EOFProd::new(None));
/// let id = Rc::new(RegexField::new(r#"^[_$a-zA-Z][_$\w]*"#, Some(NodeValue::ID)).unwrap());
/// let add = Rc::new(ConstantField::new("+", Some(NodeValue::Add)));
/// let sub = Rc::new(ConstantField::new("-", Some(NodeValue::Sub)));
/// let mul = Rc::new(ConstantField::new("*", Some(NodeValue::Mul)));
/// let div = Rc::new(ConstantField::new("/", Some(NodeValue::Div)));
/// let addition = Rc::new(Concat::new(
/// "addition",
/// vec![id.clone(), add.clone(), id.clone()],
/// ));
/// let subtraction = Rc::new(Concat::new(
/// "subtraction",
/// vec![id.clone(), sub.clone(), id.clone()],
/// ));
/// let multiplication = Rc::new(Concat::new(
/// "multiplication",
/// vec![id.clone(), mul.clone(), id.clone()],
/// ));
/// let division = Rc::new(Concat::new(
/// "division",
/// vec![id.clone(), div.clone(), id.clone()],
/// ));
/// let expression = Rc::new(Union::new(
/// "expression",
/// vec![addition, subtraction, multiplication, division],
/// ));
///
/// let main = Rc::new(Concat::new("main", vec![expression, eof]));
/// let main_node = Rc::new(Node::new(&main, NodeValue::Root));
///
/// let parser = LexerlessParser::new(main_node).unwrap();
/// let tree_list = parser.parse(b"ax+by").unwrap();
/// tree_list.last().unwrap().print().unwrap();
/// /*
/// Root # 0-5
/// ├─ ID # 0-2
/// ├─ Add # 2-3
/// └─ ID # 3-5
/// */
///
/// ```
pub type TSuffixMap<TN, TL> = ;
/// A production utility to parse multiple tails/end symbols for same body/starting symbol.
///
/// Once the associated starting symbol is successfully parsed, each tails will be tried to parse sequentially
/// and return combined parsed tree on the first success.
///
/// The general form for this production is
/// E -> X Y<sub>1</sub> | X Y<sub>2</sub> | ... X Y<sub>n</sub> where, X and Y<sub>1</sub>..<sub>n</sub>, are non-terminal or terminal symbols.
/// The utility will first try to parse X.
/// The tails of the production Y<sub>1</sub>..<sub>n</sub> will then be sequentially tried to parse until it encounter first success.
/// The right most tail production Y<sub></sub> can also be a null production (ε) for standalone [Suffixes].
/// # Example
///
/// ```
/// use lang_pt::production::{ConstantField, ProductionBuilder};
/// use lang_pt::NodeImpl;
/// use lang_pt::{
/// production::{Concat, RegexField, SeparatedList, Suffixes, Union},
/// LexerlessParser,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// enum NodeValue {
/// ID,
/// Number,
/// ArrayAccess,
/// FunctionCall,
/// FuncArgs,
/// NULL,
/// }
///
/// impl NodeImpl for NodeValue {
/// fn null() -> Self { Self::NULL }
/// }
/// let id = Rc::new(RegexField::new(r#"^[_$a-zA-Z][_$\w]*"#, Some(NodeValue::ID)).unwrap());
/// let number = Rc::new(
/// RegexField::new(
/// r"^(0|[\d--0]\d*)(\.\d+)?([eE][+-]?\d+)?",
/// Some(NodeValue::Number),
/// )
/// .unwrap(),
/// );
///
/// let id_or_number = Rc::new(Union::new("ID_or_Number", vec![id.clone(), number]));
///
/// let comma = Rc::new(ConstantField::new(",", None));
/// let open_bracket = Rc::new(ConstantField::new("[", None));
/// let close_bracket = Rc::new(ConstantField::new("]", None));
/// let open_paren = Rc::new(ConstantField::new("(", None));
/// let close_paren = Rc::new(ConstantField::new(")", None));
///
/// let array_index = Rc::new(Concat::new(
/// "ArrayIndex",
/// vec![
/// open_bracket.clone(),
/// id_or_number.clone(),
/// close_bracket.clone(),
/// ],
/// ));
///
/// let function_arguments = Rc::new(
/// SeparatedList::new(&id_or_number, &comma, false).into_node(NodeValue::FuncArgs),
/// );
///
/// let function_call = Rc::new(Concat::new(
/// "FunctionCall",
/// vec![open_paren, function_arguments, close_paren],
/// ));
///
/// let array_index_or_func_call = Rc::new(Suffixes::new(
/// "ArrayOrFuncCall",
/// &id,
/// false,
/// vec![
/// (array_index, NodeValue::ArrayAccess),
/// (function_call, NodeValue::FunctionCall),
/// ],
/// ));
///
/// let parser = LexerlessParser::new(array_index_or_func_call).unwrap();
///
/// let array_tree = parser.parse(b"arr[b]").unwrap();
/// array_tree[0].print().unwrap();
/// /*
/// ArrayAccess # 0-6
/// ├─ ID # 0-3
/// └─ ID # 4-5
/// */
///
/// let function_call_tree = parser.parse(b"func(arg1,arg2,arg3)").unwrap();
/// function_call_tree[0].print().unwrap();
/// /*
/// FunctionCall # 0-20
/// ├─ ID # 0-4
/// └─ FuncArgs # 5-19
/// ├─ ID # 5-9
/// ├─ ID # 10-14
/// └─ ID # 15
/// */
///
/// ```
/// An utility to parse a terminal or non-terminal symbols one or multiple times.
///
/// The general form for this production is
/// E -> X+ where, X can be a non-terminal or terminal symbol.
/// # Example
/// ```
/// use lang_pt::{
/// production::{Concat, EOFProd, List, ProductionBuilder, PunctuationsField, RegexField},
/// LexerlessParser, NodeImpl,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// enum NodeValue {
/// ID,
/// Add,
/// Sub,
/// Mul,
/// Div,
/// UnaryList,
/// Expr,
/// Root,
/// NULL,
/// }
///
/// impl NodeImpl for NodeValue {
/// fn null() -> Self { Self::NULL }
/// }
/// let eof = Rc::new(EOFProd::new(None));
/// let id = Rc::new(RegexField::new(r#"^[_$a-zA-Z][_$\w]*"#, Some(NodeValue::ID)).unwrap());
/// let operators = Rc::new(
/// PunctuationsField::new(vec![
/// ("+", Some(NodeValue::Add)),
/// ("-", Some(NodeValue::Sub)),
/// ("*", Some(NodeValue::Mul)),
/// ("/", Some(NodeValue::Div)),
/// ])
/// .unwrap(),
/// );
/// let unary_operators = Rc::new(
/// PunctuationsField::new(vec![
/// ("+", Some(NodeValue::Add)),
/// ("-", Some(NodeValue::Sub)),
/// ])
/// .unwrap(),
/// );
///
/// let unary_operators_list =
/// Rc::new(List::new(&unary_operators).into_node(NodeValue::UnaryList));
///
/// let expression = Rc::new(
/// Concat::new(
/// "Expression",
/// vec![
/// id.clone(),
/// operators.clone(),
/// unary_operators_list.clone(),
/// id.clone(),
/// ],
/// )
/// .into_node(NodeValue::Expr),
/// );
/// let root = Rc::new(Concat::new("root", vec![expression, eof]).into_node(NodeValue::Root));
///
/// let parser = LexerlessParser::new(root).unwrap();
///
/// let tree_list1 = parser.parse(b"ax*+by").unwrap();
/// tree_list1.iter().for_each(|tree| {
/// tree.print().unwrap();
/// });
///
/// let tree_list2 = parser.parse(b"ax*+-by").unwrap();
/// tree_list2.iter().for_each(|tree| {
/// tree.print().unwrap();
/// });
/// ```
/// A production utility to parse list of terminal or non-terminal symbols separated by another symbol.
///
/// The general form for this production is
/// E -> X s X s....X s? where, X and s can be a non-terminal or terminal symbol.
/// The production can be non-inclusive to enforce symbol X to be at end of the production.
/// # Example
/// ```
/// use lang_pt::production::ProductionBuilder;
/// use lang_pt::{
/// production::{Concat, ConstantField, EOFProd, RegexField, SeparatedList, Union},
/// LexerlessParser, NodeImpl,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// enum NodeValue {
/// ID,
/// Number,
/// NULL,
/// Array,
/// Main,
/// }
///
/// impl NodeImpl for NodeValue {
/// fn null() -> Self { Self::NULL }
/// }
///
/// let eof = Rc::new(EOFProd::new(None));
/// let id = Rc::new(RegexField::new(r#"^[_$a-zA-Z][_$\w]*"#, Some(NodeValue::ID)).unwrap());
/// let number = Rc::new(
/// RegexField::new(
/// r"^(0|[\d--0]\d*)(\.\d+)?([eE][+-]?\d+)?",
/// Some(NodeValue::Number),
/// )
/// .unwrap(),
/// );
///
/// let id_or_number = Rc::new(Union::new("id_or_Number", vec![id, number]));
/// let comma = Rc::new(ConstantField::new(",", None));
/// let open_bracket = Rc::new(ConstantField::new("[", None));
/// let close_bracket = Rc::new(ConstantField::new("]", None));
///
/// let array_items = Rc::new(SeparatedList::new(&id_or_number, &comma, false));
///
/// let array_literal = Rc::new(
/// Concat::new(
/// "ArrayLiteral",
/// vec![open_bracket, array_items, close_bracket],
/// )
/// .into_node(NodeValue::Array),
/// );
///
/// let main =
/// Rc::new(Concat::new("main", vec![array_literal, eof]).into_node(NodeValue::Main));
///
/// let parser = LexerlessParser::new(main).unwrap();
///
/// parser
/// .parse(b"[a,b,]")
/// .expect_err("Non-inclusive SeparatedList should fail to parse last comma(,)");
///
/// let tree_list = parser.parse(b"[a,b,2,3,c,4]").unwrap();
/// tree_list[0].print().unwrap();
/// /*
/// Main # 0-13
/// └─ Array # 0-13
/// ├─ ID # 1-2
/// ├─ ID # 3-4
/// ├─ Number # 5-6
/// ├─ Number # 7-8
/// ├─ ID # 9-10
/// └─ Number # 11-12
/// */
///
/// ```
/// A production utility which add null production as alternative symbol.
/// The general form for this production is
/// E -> X | ε where, X and s can be a non-terminal or terminal symbol and ε is a null terminal symbol.
///
/// # Example
/// ```
/// use lang_pt::{
/// production::{
/// Concat, EOFProd, List, Nullable, ProductionBuilder, PunctuationsField, RegexField,
/// },
/// LexerlessParser, NodeImpl,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// enum Token {
/// ID,
/// Add,
/// Sub,
/// Mul,
/// Div,
/// NULL,
/// UnaryList,
/// Expr,
/// Main,
/// }
///
/// impl NodeImpl for Token {
/// fn null() -> Self { Self::NULL }
/// }
///
/// let eof = Rc::new(EOFProd::new(None));
/// let id = Rc::new(RegexField::new(r#"^[_$a-zA-Z][_$\w]*"#, Some(Token::ID)).unwrap());
/// let operators = Rc::new(
/// PunctuationsField::new(vec![
/// ("+", Some(Token::Add)),
/// ("-", Some(Token::Sub)),
/// ("*", Some(Token::Mul)),
/// ("/", Some(Token::Div)),
/// ])
/// .unwrap(),
/// );
///
/// let unary_operators = Rc::new(
/// PunctuationsField::new(vec![("+", Some(Token::Add)), ("-", Some(Token::Sub))]).unwrap(),
/// );
///
/// let unary_operators_list =
/// Rc::new(List::new(&unary_operators).into_node(Token::UnaryList));
///
/// let nullable_unary_operator_list = Rc::new(Nullable::new(&unary_operators_list));
///
/// let expression = Rc::new(
/// Concat::new(
/// "Expression",
/// vec![
/// id.clone(),
/// operators.clone(),
/// nullable_unary_operator_list.clone(),
/// id.clone(),
/// ],
/// )
/// .into_node(Token::Expr),
/// );
/// let main = Rc::new(Concat::new("main", vec![expression, eof]).into_node(Token::Main));
///
/// let parser = LexerlessParser::new(main).unwrap();
///
/// let tree_list1 = parser.parse(b"ax+by").unwrap();
/// tree_list1[0].print().unwrap();
///
/// /*
/// Main # 0-5
/// └─ Expr # 0-5
/// ├─ ID # 0-2
/// ├─ Add # 2-3
/// ├─ NULL # 3-3
/// └─ ID # 3-5
/// */
///
/// let tree_list2 = parser.parse(b"ax*+-by").unwrap();
/// tree_list2[0].print().unwrap();
/// /*
/// Main # 0-7
/// └─ Expr # 0-7
/// ├─ ID # 0-2
/// ├─ Mul # 2-3
/// ├─ UnaryList # 3-5
/// │ ├─ Add # 3-4
/// │ └─ Sub # 4-5
/// └─ ID # 5-7
/// */
///
/// ```
/// An utility to create a [AST](crate::ASTNode) node from the parsed children.
///
/// The [None] node value will hide the children tree i.e. it will remove the children from the [ASTNode].
/// The non-terminal production will flatten the parsed tree i.e. it will sequentially add all parsed children tree into a vector.
/// Therefore, this wrapper utility can be used to create a node which will then be appended as a child to the parent tree.
/// # Example
/// ```
/// use lang_pt::{
/// production::{Concat, EOFProd, Node, PunctuationsField, RegexField},
/// LexerlessParser, NodeImpl,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// enum NodeValue {
/// NULL,
/// ID,
/// Add,
/// Sub,
/// Mul,
/// Div,
/// Main,
/// }
///
/// impl NodeImpl for NodeValue {
/// fn null() -> Self { Self::NULL }
/// }
/// let eof = Rc::new(EOFProd::new(None));
/// let id = Rc::new(RegexField::new(r#"^[_$a-zA-Z][_$\w]*"#, Some(NodeValue::ID)).unwrap());
/// let operators = Rc::new(
/// PunctuationsField::new(vec![
/// ("+", Some(NodeValue::Add)),
/// ("-", Some(NodeValue::Sub)),
/// ("*", Some(NodeValue::Mul)),
/// ("/", Some(NodeValue::Div)),
/// ])
/// .unwrap(),
/// );
///
/// let expression = Rc::new(Concat::new(
/// "Expression",
/// vec![id.clone(), operators.clone(), id.clone()],
/// ));
///
/// let main = Rc::new(Concat::new("Main", vec![expression.clone(), eof]));
/// let main_node = Rc::new(Node::new(&main, NodeValue::Main));
///
/// let parser = LexerlessParser::new(main_node).unwrap();
///
/// let tree_node = parser.parse(b"ax+by").unwrap();
/// tree_node[0].print().unwrap();
///
/// ```
/// A production utility to validate the parsed data based on the associated closure function.
///
/// Once the associated production symbol returns success result the closure will then be executed to validate parsed result.
/// # Example
/// ```
/// use lang_pt::production::ConstantField;
/// use lang_pt::production::ProductionBuilder;
/// use lang_pt::NodeImpl;
/// use lang_pt::{
/// production::{Concat, EOFProd, RegexField, Validator},
/// LexerlessParser, ProductionError,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// enum NodeValue {
/// NULL,
/// TagName,
/// Text,
/// Root,
/// }
///
/// impl NodeImpl for NodeValue {
/// fn null() -> Self { Self::NULL }
/// }
///
/// let eof = Rc::new(EOFProd::new(None));
/// let xml_tag =
/// Rc::new(RegexField::new(r#"^[_$a-zA-Z][_$\w]*"#, Some(NodeValue::TagName)).unwrap());
/// let xml_text = Rc::new(RegexField::new(r#"^([^><]|\\[><])*"#, Some(NodeValue::Text)).unwrap());
///
/// let open_angle = Rc::new(ConstantField::new("<", None));
/// let close_angle = Rc::new(ConstantField::new(">", None));
///
/// let open_angle_slash = Rc::new(ConstantField::new("</", None));
///
/// let xml_element = Rc::new(Concat::new(
/// "xml_element",
/// vec![
/// open_angle.clone(),
/// xml_tag.clone(),
/// close_angle.clone(),
/// xml_text.clone(),
/// open_angle_slash.clone(),
/// xml_tag.clone(),
/// close_angle.clone(),
/// ],
/// ));
///
/// let validated_xml_element = Rc::new(Validator::new(&xml_element, |children, code| {
/// let start_tag = &code[children[0].start..children[0].end];
/// let end_tag = &code[children[2].start..children[2].end];
/// if start_tag != end_tag {
/// return Err(ProductionError::Validation(children[0].start, unsafe {
/// format!(
/// "Mismatch xml start tag {} and end tag {}",
/// std::str::from_utf8_unchecked(start_tag),
/// std::str::from_utf8_unchecked(end_tag)
/// )
/// }));
/// }
/// Ok(())
/// }));
/// let root_node = Rc::new(
/// Concat::new("main", vec![validated_xml_element, eof]).into_node(NodeValue::Root),
/// );
///
/// let parser = LexerlessParser::new(root_node).unwrap();
///
/// parser
/// .parse(b"<span>This is text.</div>")
/// .expect_err("Should through a validation error");
/// let tree_node = parser.parse(b"<span>This is text.</span>").unwrap();
/// tree_node[0].print().unwrap();
/// /*
/// Root # 0-26
/// ├─ TagName # 1-5
/// ├─ Text # 6-19
/// └─ TagName # 21-25
/// */
///
/// ```
/// A production utility to peek and validate the associated symbol without consuming the input.
/// # Example
/// ```
/// use lang_pt::{
/// production::{Concat, ConstantField, EOFProd, Lookahead, ProductionBuilder, RegexField, Union},
/// LexerlessParser, NodeImpl,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// pub enum NodeValue {
/// ID,
/// Null,
/// KeywordVar,
/// KeywordLet,
/// KeywordConst,
/// TypingNumber,
/// LineTermination,
/// Root,
/// }
///
/// impl NodeImpl for NodeValue {
/// fn null() -> Self {
/// Self::Null
/// }
/// }
///
/// let eof = Rc::new(EOFProd::new(None));
/// let id = Rc::new(RegexField::new(r#"^[_$a-zA-Z][_$\w]*"#, Some(NodeValue::ID)).unwrap());
/// let white_space = Rc::new(RegexField::new(r"^[^\S\r\n]+", None).unwrap());
///
/// let keyword_var = Rc::new(ConstantField::new("var", Some(NodeValue::KeywordVar)));
/// let keyword_let = Rc::new(ConstantField::new("let", Some(NodeValue::KeywordLet)));
/// let keyword_const = Rc::new(ConstantField::new("const", Some(NodeValue::KeywordConst)));
///
/// let declaration_type = Rc::new(Union::new(
/// "var_type",
/// vec![keyword_var, keyword_let, keyword_const],
/// ));
///
/// let typing_type_number = Rc::new(ConstantField::new("number", Some(NodeValue::TypingNumber)));
/// let typing_type_string = Rc::new(ConstantField::new("string", Some(NodeValue::KeywordLet)));
/// let typing_type_object = Rc::new(ConstantField::new("object", Some(NodeValue::KeywordConst)));
/// let typing_type_boolean = Rc::new(ConstantField::new("boolean", Some(NodeValue::KeywordConst)));
///
/// let typing_type_union = Rc::new(Union::new(
/// "typings",
/// vec![
/// typing_type_number,
/// typing_type_string,
/// typing_type_object,
/// typing_type_boolean,
/// ],
/// ));
///
/// let hidden_colon = Rc::new(ConstantField::new(":", None));
/// let semi_colon = Rc::new(ConstantField::new(";", None));
///
/// let typing_declaration = Rc::new(Concat::new(
/// "typing_declaration",
/// vec![hidden_colon.clone(), typing_type_union.clone()],
/// ));
///
/// let lookahead_eof = Rc::new(Lookahead::new(&eof, Some(NodeValue::LineTermination)));
///
/// let statement_termination = Rc::new(Union::new(
/// "statement_termination",
/// vec![semi_colon, lookahead_eof],
/// ));
///
/// let var_declaration = Rc::new(Concat::new(
/// "var_declaration",
/// vec![
/// declaration_type.clone(),
/// white_space.clone(),
/// id.clone(),
/// typing_declaration.clone(),
/// statement_termination.clone(),
/// ],
/// ));
///
/// let root =
/// Rc::new(Concat::new("main", vec![var_declaration, eof]).into_node(NodeValue::Root));
///
/// let parser = LexerlessParser::new(root).unwrap();
///
/// let tree_node = parser.parse(b"let ax:number;").unwrap();
/// tree_node[0].print().unwrap();
/// /*
/// Root # 0-14
/// ├─ KeywordLet # 0-3
/// ├─ ID # 4-6
/// └─ TypingNumber # 7-13
/// */
///
/// let nullable_typing_node = parser.parse(b"let ax:string").unwrap();
/// nullable_typing_node[0].print().unwrap();
/// /*
/// Root # 0-13
/// ├─ KeywordLet # 0-3
/// ├─ ID # 4-6
/// ├─ KeywordLet # 7-13
/// └─ LineTermination # 13-13
/// */
/// ```
/// A production utility which makes child symbol to consume input on non filtered token stream.
///
/// For most of the programing languages like Javascript, CSS, HTML
/// it is wise to build a grammar ignoring the non structural elements like
/// whitespace, line-break from the input tokens to improve performance.
/// However, for language like Javascript a line break can also signify a grammatical value like expression termination.
/// Thus, in this similar production should be wrapped with NonStructural utility to consume non-structural lexical items of the productions.
/// # Example
/// ```
/// use lang_pt::{
/// lexeme::{LexemeBuilder, Pattern, Punctuations},
/// production::{
/// Concat, EOFProd, List, Lookahead, NonStructural, ProductionBuilder, TokenField,
/// TokenFieldSet, Union,
/// },
/// DefaultParser, NodeImpl, TokenImpl, Tokenizer,
/// };
/// use std::rc::Rc;
///
/// #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
/// enum Token {
/// ID,
/// Number,
/// Add,
/// Sub,
/// Mul,
/// Div,
/// LT,
/// LTE,
/// GT,
/// GTE,
/// EQ,
/// Space,
/// Colon,
/// LineBreak,
/// Semicolon,
/// KeywordVar,
/// KeywordConst,
/// KeywordLet,
/// KeywordIf,
/// KeywordNumber,
/// KeywordString,
/// KeywordObject,
/// KeywordBoolean,
/// EOF,
/// Assign,
/// OpenBrace,
/// CloseBrace,
/// OpenParen,
/// CloseParen,
/// OpenBracket,
/// CloseBracket,
/// }
///
/// impl TokenImpl for Token {
/// fn eof() -> Self { Self::EOF }
/// fn is_structural(&self) -> bool {
/// match self {
/// Token::Space | Token::LineBreak => false,
/// _ => true,
/// }
/// }
/// }
/// #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)]
/// pub enum NodeValue {
/// ID,
/// Null,
/// KeywordVar,
/// KeywordLet,
/// KeywordConst,
/// TypingNumber,
/// TypingString,
/// TypingBool,
/// TypingObject,
/// EOFTermination,
/// NewLine,
/// VarAssignment,
/// Root,
/// }
///
/// impl NodeImpl for NodeValue {
/// fn null() -> Self {
/// Self::Null
/// }
/// }
///
/// let mapped_identifier = Pattern::new(Token::ID, r#"^[_$a-zA-Z][_$\w]*"#)
/// .unwrap()
/// .mapping(vec![
/// ("var", Token::KeywordVar),
/// ("const", Token::KeywordConst),
/// ("let", Token::KeywordLet),
/// ("if", Token::KeywordIf),
/// ("boolean", Token::KeywordBoolean),
/// ("number", Token::KeywordNumber),
/// ("object", Token::KeywordObject),
/// ("string", Token::KeywordString),
/// ])
/// .unwrap();
///
/// let number_literal =
/// Pattern::new(Token::Number, r"^(0|[\d--0]\d*)(\.\d+)?([eE][+-]?\d+)?").unwrap();
/// let non_break_space = Pattern::new(Token::Space, r"^[^\S\r\n]+").unwrap();
/// let line_break = Pattern::new(Token::LineBreak, r"^[\r\n]+").unwrap();
///
/// let expression_punctuations = Punctuations::new(vec![
/// ("+", Token::Add),
/// ("-", Token::Sub),
/// ("*", Token::Mul),
/// ("/", Token::Div),
/// ("<", Token::LT),
/// ("<=", Token::LTE),
/// (">", Token::GT),
/// (">=", Token::GTE),
/// ("==", Token::EQ),
/// ("=", Token::Assign),
/// ("{", Token::OpenBrace),
/// ("}", Token::CloseBrace),
/// ("(", Token::OpenParen),
/// (")", Token::CloseParen),
/// ("[", Token::OpenBracket),
/// ("]", Token::CloseBracket),
/// (";", Token::Semicolon),
/// (":", Token::Colon),
/// ])
/// .unwrap();
/// let tokenizer=Tokenizer::new(vec![
/// Rc::new(non_break_space),
/// Rc::new(line_break),
/// Rc::new(mapped_identifier),
/// Rc::new(number_literal),
/// Rc::new(expression_punctuations),
/// ]);
/// let eof = Rc::new(EOFProd::new(None));
/// let id = Rc::new(TokenField::new(Token::ID, Some(NodeValue::ID)));
///
/// let declaration_type = Rc::new(TokenFieldSet::new(vec![
/// (Token::KeywordVar, Some(NodeValue::KeywordVar)),
/// (Token::KeywordConst, Some(NodeValue::KeywordConst)),
/// (Token::KeywordLet, Some(NodeValue::KeywordLet)),
/// ]));
///
/// let typing_type_union = Rc::new(TokenFieldSet::new(vec![
/// (Token::KeywordNumber, Some(NodeValue::TypingNumber)),
/// (Token::KeywordBoolean, Some(NodeValue::TypingBool)),
/// (Token::KeywordObject, Some(NodeValue::TypingObject)),
/// (Token::KeywordString, Some(NodeValue::TypingString)),
/// ]));
///
/// let hidden_colon = Rc::new(TokenField::new(Token::Colon, None));
/// let semi_colon = Rc::new(TokenField::new(Token::Semicolon, None));
///
/// let typing_declaration = Rc::new(Concat::new(
/// "typing_declaration",
/// vec![hidden_colon.clone(), typing_type_union.clone()],
/// ));
///
/// let lookahead_eof = Rc::new(Lookahead::new(&eof, Some(NodeValue::EOFTermination)));
///
/// // A new line is also expression terminal for language like Javascript.
/// // However, the new line tokens are filtered for improving performance.
/// // Therefore, a NonStructural utility force the parsing on unfiltered tokens.
///
/// let hidden_null_white_space = Rc::new(
/// TokenField::new(Token::Space, None)
/// .into_null_hidden()
/// );
///
/// let line_break = Rc::new(TokenField::new(Token::LineBreak, Some(NodeValue::NewLine)));
///
/// let line_break_seq = Rc::new(Concat::new(
/// "line_break_seq",
/// vec![hidden_null_white_space, line_break],
/// ));
///
/// let non_structural_line_break = Rc::new(NonStructural::new(&line_break_seq, false));
///
/// let statement_termination = Rc::new(Union::new(
/// "statement_termination",
/// vec![semi_colon, lookahead_eof, non_structural_line_break],
/// ));
///
/// let var_declaration = Rc::new(
/// Concat::new(
/// "var_declaration",
/// vec![
/// declaration_type.clone(),
/// id.clone(),
/// typing_declaration.clone(),
/// statement_termination.clone(),
/// ],
/// )
/// .into_node(NodeValue::VarAssignment),
/// );
/// let list_var_declaration = Rc::new(List::new(&var_declaration));
///
/// let root = Rc::new(
/// Concat::new("main", vec![list_var_declaration, eof]).into_node(NodeValue::Root),
/// );
///
/// let parser = DefaultParser::new(Rc::new(tokenizer), root).unwrap();
///
/// let code = r"
/// let ax:number
/// let ax:string
/// ";
///
/// let tree_node = parser.parse(code.as_bytes()).unwrap();
/// tree_node[0].print().unwrap();
/// /*
/// Root # 9-49
/// ├─ VarAssignment # 9-31
/// │ ├─ KeywordLet # 9-12
/// │ ├─ ID # 13-15
/// │ ├─ TypingNumber # 16-22
/// │ └─ NewLine # 22-23
/// └─ VarAssignment # 31-49
/// ├─ KeywordLet # 31-34
/// ├─ ID # 35-37
/// ├─ TypingString # 38-44
/// └─ EOFTermination # 49-49
/// */
///
/// ```
/// A production utility which makes child symbol to consume input back on filtered token stream. (Not tested)
///
/// An utility to memorize and use the parsed result at particular positions of code (Packrat parsing technique.)
///
/// This wrapper utility will first look for memorize parsed result for the associated production at the particular pointer location.
/// If the parsed result is not available at the particular location it will then obtain the parsed result for the associated production and also save it to memory.
/// A builder utility trait implemented for all generic [IProduction] structure.