arena-terms-parser 0.6.2

Parser for arena-backed, lightweight representations of Prolog-like terms
Documentation
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
//! Parser for Prolog-like terms with operator definitions.
//!
//! This module defines the [`TermParser`], which implements a shift-reduce SLR(1) parser
//! for Prolog-style terms tokenized by the [`TermLexer`]. It integrates with operator
//! definitions ([`OperDefs`]) to correctly resolve shift/reduce conflicts according to declared
//! precedence and associativity rules.
//!             
//! The parser consumes tokens produced by [`TermLexer`] and uses a mutable
//! [`Arena`] as shared context to construct arena-allocated [`Term`] values
//! (from the [`arena_terms`] crate) representing atoms, numbers, compound terms,
//! lists, tuples, and other structures.
//!
//! Generated parsing tables and rules are produced by **parlex-gen**’s [`aslr`] tool.
//!
//! [`TermParser`]: struct.TermParser
//! [`TermLexer`]: crate::lexer::TermLexer
//! [`TermToken`]: crate::lexer::TermToken
//! [`OperDefs`]: crate::oper::OperDefs
//! [`arena_terms`]: https://crates.io/crates/arena-terms
//! [`aslr`]: https://crates.io/crates/parlex-gen

use crate::encoding::Encoding;
use crate::{TermLexer, TermToken, TokenID, Value};
use arena_terms::{Arena, Assoc, Fixity, MAX_OPER_PREC, MIN_OPER_PREC, Term, View};
use parlex::{
    LexerStats, ParlexError, Parser, ParserAction, ParserData, ParserDriver, ParserStats, Token,
};
use parser_data::{AmbigID, ParData, ProdID, StateID};
use std::marker::PhantomData;
use try_next::TryNextWithContext;

/// Includes the generated SLR parser tables and definitions.
///         
/// This file (`parser_data.rs`) is produced by the **parlex-gen** [`aslr`] tool
/// during the build process. It defines the parsing automaton, rule metadata,
/// and associated enum types used by the [`TermParser`].
pub mod parser_data {
    include!(concat!(env!("OUT_DIR"), "/parser_data.rs"));
}

/// A driver that defines semantic actions for the term parser.
///
/// The [`TermParserDriver`] type implements [`ParserDriver`] and acts as the
/// bridge between the parser engine ([`Parser`]) and calculator-specific
/// semantic logic.
///
/// It provides the behavior for grammar reductions and ambiguity resolution
/// during parsing. Each reduction corresponds to a grammar production rule
/// in [`ParData`], and is responsible for building a term.
///
/// # Type Parameters
///
/// - `I`: The input source (the lexer) that yields [`TermToken`]s. Must implement
///   [`TryNextWithContext<Arena, Item = TermToken>`].
///
/// # Associated Types
///
/// - `ParserData = ParData`:
///   Generated parser metadata containing grammar rules, production IDs,
///   and ambiguity identifiers.
/// - `Token = TermToken`:
///   The token type produced by the lexer and consumed by this parser.
/// - `Parser = Parser<I, Self, Arena>`:
///   The parser engine parameterized by this driver and context.
/// - `Error = TermParserError`:
///   Unified error type propagated during parsing.
/// - `Context = Arena`:
///   Externally supplied context.
///
/// # Responsibilities
///
/// The parser driver performs calculator-specific actions:
///
/// - **`resolve_ambiguity`** — invoked when the grammar allows multiple valid
///   interpretations of a token sequence. The driver chooses which parse path
///   to follow by returning an appropriate [`ParserAction`].
/// - **`reduce`** — executed when a grammar production completes. The driver
///   can perform semantic actions such as arithmetic evaluation, updating the
///   symbol table, or producing intermediate values.
pub struct TermParserDriver<I> {
    /// Marker to associate the driver with its input type `I`.
    _marker: PhantomData<I>,

    /// Stack of intermediate [`Term`] values used for reduction of term sequences.
    ///
    /// [`Value::Index`] refers to an entry in this stack, enabling grammar
    /// actions to compose and reduce sequences of terms into higher-level
    /// structures during parsing.
    terms: Vec<Term>,
}

impl<I> ParserDriver for TermParserDriver<I>
where
    I: TryNextWithContext<Arena, LexerStats, Item = TermToken, Error: std::fmt::Display + 'static>,
{
    /// Parser metadata generated from the calculator grammar.
    type ParserData = ParData;

    /// Token type consumed by the parser.
    type Token = TermToken;

    /// Concrete parser engine type.
    type Parser = Parser<I, Self, Self::Context>;

    /// Context (symbol table or shared state).
    type Context = Arena;

    /// Resolves an ambiguity reported by the parser (e.g., shift/reduce).
    ///
    /// Given an ambiguity identifier and the lookahead token `tok2`, this method
    /// chooses the appropriate parser action (shift or reduce) according to the
    /// operator precedence and associativity rules.
    ///
    /// # Parameters
    /// - `_arena`: Arena used to allocate or inspect terms.
    /// - `ambig`:  The generated ambiguity ID (`AmbigID`).
    /// - `tok2`:   The lookahead token at the ambiguity point.
    ///
    /// # Returns
    /// The selected parser [`Action`] to disambiguate the current state.
    ///
    /// # Errors
    /// Returns an error if the ambiguity cannot be resolved consistently.
    ///
    /// # Notes
    /// This grammar contains only **Shift/Reduce** conflicts — cases where
    /// the parser can either:
    /// - **Reduce** using a completed production rule, or
    /// - **Shift** the next incoming token (`tok2`).
    ///
    /// Other types of conflicts (such as **Reduce/Reduce**) are much more
    /// difficult to handle programmatically and usually require modifying
    /// the grammar itself to eliminate ambiguity.
    fn resolve_ambiguity(
        &mut self,
        parser: &mut Self::Parser,
        arena: &mut Self::Context,
        ambig: <Self::ParserData as ParserData>::AmbigID,
        tok2: &Self::Token,
    ) -> Result<ParserAction<StateID, ProdID, AmbigID>, ParlexError> {
        let ambigs = ParData::lookup_ambig(ambig);
        let shift_action = ambigs[0];
        let ParserAction::Shift(_) = shift_action else {
            panic!("expected shift");
        };
        let reduce_action = ambigs[1];
        let ParserAction::Reduce(prod_id) = reduce_action else {
            panic!("expected reduce");
        };

        log::trace!(
            "Conflict between reducing {:?} and shifting {:?}",
            prod_id,
            tok2
        );

        let (fixity1, tok1) = match prod_id {
            ProdID::Infix1 => {
                // Expr -> Expr atomOper Expr
                (Fixity::Infix, parser.tokens_peek(1))
            }
            ProdID::Infix2 => {
                // Expr -> Expr funcOper Seq ) Expr
                (Fixity::Infix, parser.tokens_peek(3))
            }
            ProdID::Prefix1 => {
                // Expr -> atomOper Expr
                (Fixity::Prefix, parser.tokens_peek(1))
            }
            ProdID::Prefix2 => {
                // Expr -> funcOper Seq ) Expr
                (Fixity::Prefix, parser.tokens_peek(3))
            }
            ProdID::Postfix1 => {
                // Expr -> Expr atomOper
                (Fixity::Postfix, parser.tokens_peek(0))
            }
            ProdID::Postfix2 => {
                // Expr -> Expr funcOper Seq )
                (Fixity::Postfix, parser.tokens_peek(2))
            }
            _ => {
                return Err(ParlexError {
                    message: format!(
                        "unexpected conflict: reduction of {:?} with shifting token {:?}",
                        prod_id, tok2
                    ),
                    span: tok2.span(),
                });
            }
        };

        let op_tab1 = arena.get_oper(tok1.op_tab_index);
        let op_tab2 = arena.get_oper(tok2.op_tab_index);

        assert!(op_tab1.is_oper());

        if op_tab2.is_oper() {
            let op_def1 = match op_tab1[fixity1] {
                Some(ref op_def1) => op_def1,
                None => return Ok(shift_action),
            };

            let prec1 = op_def1.prec;
            let assoc1 = op_def1.assoc;

            let min_prec2 = std::cmp::min(
                op_tab2[Fixity::Infix]
                    .as_ref()
                    .map(|x| x.prec)
                    .unwrap_or(MAX_OPER_PREC),
                op_tab2[Fixity::Postfix]
                    .as_ref()
                    .map(|x| x.prec)
                    .unwrap_or(MAX_OPER_PREC),
            );
            let max_prec2 = std::cmp::max(
                op_tab2[Fixity::Infix]
                    .as_ref()
                    .map(|x| x.prec)
                    .unwrap_or(MIN_OPER_PREC),
                op_tab2[Fixity::Postfix]
                    .as_ref()
                    .map(|x| x.prec)
                    .unwrap_or(MIN_OPER_PREC),
            );

            if prec1 > min_prec2 {
                Ok(reduce_action)
            } else if prec1 < max_prec2 {
                Ok(shift_action)
            } else if min_prec2 == max_prec2 && prec1 == min_prec2 {
                if assoc1 == Assoc::None {
                    return Err(ParlexError {
                        message: format!(
                            "precedence conflict: cannot chain non-associative operator {:?}; use parenthesis",
                            tok1
                        ),
                        span: tok2.span(),
                    });
                }
                if op_tab2[Fixity::Infix]
                    .as_ref()
                    .is_some_and(|x| x.assoc == Assoc::None)
                    || op_tab2[Fixity::Postfix]
                        .as_ref()
                        .is_some_and(|x| x.assoc == Assoc::None)
                {
                    return Err(ParlexError {
                        message: format!(
                            "precedence conflict: cannot chain non-associative operator {:?}; use parenthesis",
                            tok2
                        ),
                        span: tok2.span(),
                    });
                }
                if op_tab2[Fixity::Infix]
                    .as_ref()
                    .is_some_and(|x| x.assoc != assoc1)
                    || op_tab2[Fixity::Postfix]
                        .as_ref()
                        .is_some_and(|x| x.assoc != assoc1)
                {
                    return Err(ParlexError {
                        message: format!(
                            "associativity conflict: cannot chain operators {:?} and {:?}; use parenthesis",
                            tok1, tok2
                        ),
                        span: tok2.span(),
                    });
                } else {
                    if assoc1 == Assoc::Left {
                        Ok(reduce_action)
                    } else {
                        Ok(shift_action)
                    }
                }
            } else {
                return Err(ParlexError {
                    message: format!(
                        "precedence conflict: cannot chain operators {:?} and {:?}; use parenthesis",
                        tok1, tok2
                    ),
                    span: tok2.span(),
                });
            }
        } else {
            Ok(shift_action)
        }
    }

    /// Performs a grammar reduction for the given production rule.
    ///
    /// Applies the semantic action for `prod_id`, typically constructing or
    /// normalizing an arena-backed [`Term`], and pushes the resulting token
    /// onto the parser’s value stack.
    ///
    /// # Parameters
    /// - `arena`: Arena used to allocate or inspect terms.
    /// - `prod_id`:  The production being reduced (`ProdID`).
    /// - `token`: The lookahead token (normally not used).
    ///
    /// # Errors
    /// Returns an error if the reduction fails due to arity mismatches,
    /// invalid operator metadata, or inconsistent stack state.
    fn reduce(
        &mut self,
        parser: &mut Self::Parser,
        arena: &mut Self::Context,
        prod_id: <Self::ParserData as ParserData>::ProdID,
        token: &Self::Token,
    ) -> Result<(), ParlexError> {
        match prod_id {
            ProdID::Start => {
                // Accept - does not get reduced
                unreachable!()
            }

            ProdID::Term1 => {
                // Term -> Expr
                let mut expr_tok = parser.tokens_pop();
                expr_tok.token_id = TokenID::Term;
                parser.tokens_push(expr_tok);
            }

            ProdID::Term2 => {
                // Term -> Expr .
                let dot = parser.tokens_pop();
                let mut expr_tok = parser.tokens_pop();
                expr_tok.token_id = TokenID::Term;
                expr_tok.merge_span(&dot);
                parser.tokens_push(expr_tok);
            }

            ProdID::Term3 => {
                // Term ->
                parser.tokens_push(TermToken::new(TokenID::Term, Value::None, token.span()));
            }

            ProdID::Term4 => {
                // Term -> .
                let dot = parser.tokens_pop();
                parser.tokens_push(TermToken::new(TokenID::Term, Value::None, dot.span()));
            }

            ProdID::Func => {
                // Expr -> func Seq )
                let right_paren = parser.tokens_pop();
                let index = usize::try_from(parser.tokens_pop().value)?;
                let mut func_tok = parser.tokens_pop();
                func_tok.merge_span(&right_paren);
                let span = func_tok.span();
                let op_tab_index = func_tok.op_tab_index;
                let functor = Term::try_from(func_tok.value)?;

                let vs = std::iter::once(&functor).chain(self.terms[index..].iter());
                let term = arena
                    .funcv(vs)
                    .map_err(|e| ParlexError::from_err(e, span))?;
                self.terms.truncate(index);

                let term = arena
                    .normalize_term(term, Fixity::Fun, op_tab_index)
                    .map_err(|e| ParlexError::from_err(e, span))?;

                parser.tokens_push(TermToken::new(TokenID::Expr, Value::Term(term), span));
            }

            ProdID::List => {
                // Expr -> [ Seq ]
                let right_brack_tok = parser.tokens_pop();
                let seq_tok = parser.tokens_pop();
                let mut left_brack_tok = parser.tokens_pop();
                left_brack_tok.merge_span(&right_brack_tok);
                let index = usize::try_from(seq_tok.value)?;

                let term = arena.list(&self.terms[index..]);
                self.terms.truncate(index);

                parser.tokens_push(TermToken::new(
                    TokenID::Expr,
                    Value::Term(term),
                    left_brack_tok.span(),
                ));
            }

            ProdID::Nil => {
                // Expr -> [ ]
                let right_brack_tok = parser.tokens_pop();
                let mut left_brack_tok = parser.tokens_pop();
                left_brack_tok.merge_span(&right_brack_tok);
                parser.tokens_push(TermToken::new(
                    TokenID::Expr,
                    Value::Term(Term::NIL),
                    left_brack_tok.span(),
                ));
            }

            ProdID::List2 => {
                // Expr -> [ Seq | Expr ]
                let right_brack_tok = parser.tokens_pop();
                let tail = Term::try_from(parser.tokens_pop().value)?;
                parser.tokens_pop();
                let index = usize::try_from(parser.tokens_pop().value)?;
                let mut left_brack_tok = parser.tokens_pop();
                left_brack_tok.merge_span(&right_brack_tok);

                let term = arena.listc(&self.terms[index..], tail);
                self.terms.truncate(index);

                parser.tokens_push(TermToken::new(
                    TokenID::Expr,
                    Value::Term(term),
                    left_brack_tok.span(),
                ));
            }

            ProdID::Tuple => {
                // Expr -> ( Seq )
                let right_paren_tok = parser.tokens_pop();
                let seq_tok = parser.tokens_pop();
                let mut left_paren_tok = parser.tokens_pop();
                left_paren_tok.merge_span(&right_paren_tok);

                let index = usize::try_from(seq_tok.value)?;

                // Arena terms parser does not currently support unary tuples.
                // TODO: Consider adding explicit unary tuple syntax `(expr,)`.
                let vs = &self.terms[index..];
                let term = if vs.len() == 1 {
                    vs[0]
                } else {
                    arena.tuple(vs)
                };
                self.terms.truncate(index);

                parser.tokens_push(TermToken::new(
                    TokenID::Expr,
                    Value::Term(term),
                    left_paren_tok.span(),
                ));
            }

            ProdID::Unit => {
                // Expr -> ( )
                let right_paren_tok = parser.tokens_pop();
                let mut left_paren_tok = parser.tokens_pop();
                left_paren_tok.merge_span(&right_paren_tok);

                parser.tokens_push(TermToken::new(
                    TokenID::Expr,
                    Value::Term(Term::UNIT),
                    left_paren_tok.span(),
                ));
            }

            ProdID::Var | ProdID::Int | ProdID::Real | ProdID::Date | ProdID::Str | ProdID::Bin => {
                // Expr -> xxx
                let mut tok = parser.tokens_pop();
                tok.token_id = TokenID::Expr;
                parser.tokens_push(tok);
            }

            ProdID::Atom => {
                // Expr -> atom
                let atom_tok = parser.tokens_pop();
                let span = atom_tok.span();
                let op_tab_index = atom_tok.op_tab_index;

                let atom = Term::try_from(atom_tok.value)?;

                let term = arena
                    .normalize_term(atom, Fixity::Fun, op_tab_index)
                    .map_err(|e| ParlexError::from_err(e, span))?;

                parser.tokens_push(TermToken::new(TokenID::Expr, Value::Term(term), span));
            }

            ProdID::Infix1 => {
                // Expr -> Expr atomOper Expr
                let expr2_tok = parser.tokens_pop();
                let oper_tok = parser.tokens_pop();
                let mut expr1_tok = parser.tokens_pop();
                expr1_tok.merge_span(&expr2_tok);
                let span = expr1_tok.span();
                let op_tab_index = oper_tok.op_tab_index;

                let expr2 = Term::try_from(expr2_tok.value)?;
                let oper = Term::try_from(oper_tok.value)?;
                let expr1 = Term::try_from(expr1_tok.value)?;

                let term = arena
                    .funcv([oper, expr1, expr2])
                    .map_err(|e| ParlexError::from_err(e, span))?;
                let term = arena
                    .normalize_term(term, Fixity::Infix, op_tab_index)
                    .map_err(|e| ParlexError::from_err(e, span))?;

                parser.tokens_push(TermToken::new(TokenID::Expr, Value::Term(term), span));
            }

            ProdID::Infix2 => {
                // Expr -> Expr func Seq ) Expr
                let expr2_tok = parser.tokens_pop();
                parser.tokens_pop();
                let index = usize::try_from(parser.tokens_pop().value)?;
                let oper_tok = parser.tokens_pop();
                let mut expr1_tok = parser.tokens_pop();
                expr1_tok.merge_span(&expr2_tok);

                let span = expr1_tok.span();
                let op_tab_index = oper_tok.op_tab_index;

                let expr2 = Term::try_from(expr2_tok.value)?;
                let oper = Term::try_from(oper_tok.value)?;
                let expr1 = Term::try_from(expr1_tok.value)?;

                let xs = [oper, expr1, expr2];
                let vs = xs.iter().chain(self.terms[index..].iter());
                let term = arena
                    .funcv(vs)
                    .map_err(|e| ParlexError::from_err(e, span))?;
                self.terms.truncate(index);

                let term = arena
                    .normalize_term(term, Fixity::Infix, op_tab_index)
                    .map_err(|e| ParlexError::from_err(e, span))?;

                parser.tokens_push(TermToken::new(TokenID::Expr, Value::Term(term), span));
            }

            ProdID::Prefix1 => {
                // Expr -> atom Expr
                let expr1_tok = parser.tokens_pop();
                let mut oper_tok = parser.tokens_pop();
                oper_tok.merge_span(&expr1_tok);

                let span = oper_tok.span();
                let op_tab_index = oper_tok.op_tab_index;

                let expr1 = Term::try_from(expr1_tok.value)?;
                let oper = Term::try_from(oper_tok.value)?;

                let term = match oper
                    .view(arena)
                    .map_err(|e| ParlexError::from_err(e, span))?
                {
                    // Arena terms parser currently gives special treatment to unary minus
                    // on integer and real literals (it directly negates them).
                    // TODO: Consider handling minus at the lexical level.
                    View::Atom(s)
                        if s == "-"
                            && matches!(
                                expr1
                                    .view(arena)
                                    .map_err(|e| ParlexError::from_err(e, span))?,
                                View::Int(_) | View::Real(_)
                            ) =>
                    {
                        match expr1
                            .view(arena)
                            .map_err(|e| ParlexError::from_err(e, span))?
                        {
                            View::Int(i) => arena.int(-i),
                            View::Real(r) => arena.real(-r),
                            _ => unreachable!(),
                        }
                    }
                    _ => {
                        let term = arena
                            .funcv([oper, expr1])
                            .map_err(|e| ParlexError::from_err(e, span))?;
                        arena
                            .normalize_term(term, Fixity::Prefix, op_tab_index)
                            .map_err(|e| ParlexError::from_err(e, span))?
                    }
                };

                parser.tokens_push(TermToken::new(TokenID::Expr, Value::Term(term), span));
            }

            ProdID::Prefix2 => {
                // Expr -> func Seq ) Expr
                let expr1_tok = parser.tokens_pop();
                parser.tokens_pop();
                let index = usize::try_from(parser.tokens_pop().value)?;
                let mut oper_tok = parser.tokens_pop();
                oper_tok.merge_span(&expr1_tok);

                let span = oper_tok.span();
                let op_tab_index = oper_tok.op_tab_index;

                let oper = Term::try_from(oper_tok.value)?;
                let expr1 = Term::try_from(expr1_tok.value)?;

                let xs = [oper, expr1];
                let vs = xs.iter().chain(self.terms[index..].iter());
                let term = arena
                    .funcv(vs)
                    .map_err(|e| ParlexError::from_err(e, span))?;
                self.terms.truncate(index);

                let term = arena
                    .normalize_term(term, Fixity::Prefix, op_tab_index)
                    .map_err(|e| ParlexError::from_err(e, span))?;

                parser.tokens_push(TermToken::new(TokenID::Expr, Value::Term(term), span));
            }

            ProdID::Postfix1 => {
                // Expr -> Expr atomOper
                let oper_tok = parser.tokens_pop();
                let mut expr1_tok = parser.tokens_pop();
                expr1_tok.merge_span(&oper_tok);

                let span = expr1_tok.span();
                let op_tab_index = oper_tok.op_tab_index;

                let oper = Term::try_from(oper_tok.value)?;
                let expr1 = Term::try_from(expr1_tok.value)?;

                let term = arena
                    .funcv([oper, expr1])
                    .map_err(|e| ParlexError::from_err(e, span))?;
                let term = arena
                    .normalize_term(term, Fixity::Postfix, op_tab_index)
                    .map_err(|e| ParlexError::from_err(e, span))?;

                parser.tokens_push(TermToken::new(TokenID::Expr, Value::Term(term), span));
            }

            ProdID::Postfix2 => {
                // Expr -> Expr func Seq )
                let right_paren_tok = parser.tokens_pop();
                let index = usize::try_from(parser.tokens_pop().value)?;
                let oper_tok = parser.tokens_pop();
                let mut expr1_tok = parser.tokens_pop();
                expr1_tok.merge_span(&right_paren_tok);

                let span = expr1_tok.span();
                let op_tab_index = oper_tok.op_tab_index;

                let oper = Term::try_from(oper_tok.value)?;
                let expr1 = Term::try_from(expr1_tok.value)?;

                let xs = [oper, expr1];
                let vs = xs.iter().chain(self.terms[index..].iter());
                let term = arena
                    .funcv(vs)
                    .map_err(|e| ParlexError::from_err(e, span))?;
                self.terms.truncate(index);

                let term = arena
                    .normalize_term(term, Fixity::Postfix, op_tab_index)
                    .map_err(|e| ParlexError::from_err(e, span))?;

                parser.tokens_push(TermToken::new(TokenID::Expr, Value::Term(term), span));
            }

            ProdID::Seq1 => {
                // Seq -> BareSeq
                let mut bare_seq_tok = parser.tokens_pop();
                bare_seq_tok.token_id = TokenID::Seq;
                parser.tokens_push(bare_seq_tok);
            }

            ProdID::Seq2 => {
                // Seq -> BareSeq ,
                parser.tokens_pop();
                let mut bare_seq_tok = parser.tokens_pop();

                bare_seq_tok.token_id = TokenID::Seq;
                parser.tokens_push(bare_seq_tok);
            }

            ProdID::BareSeq1 => {
                // BareSeq -> Expr
                let expr_tok = parser.tokens_pop();
                let span = expr_tok.span();
                let expr = Term::try_from(expr_tok.value)?;

                let index = self.terms.len();
                self.terms.push(expr);

                parser.tokens_push(TermToken::new(TokenID::BareSeq, Value::Index(index), span));
            }

            ProdID::BareSeq2 => {
                // BareSeq -> BareSeq , Expr
                let expr_tok = parser.tokens_pop();
                let expr = Term::try_from(expr_tok.value)?;
                parser.tokens_pop();

                self.terms.push(expr);
            }
        }
        Ok(())
    }
}

/// Prolog-like term parser with operator precedence and associativity handling.
///
/// The [`TermTokenParser`] drives the parsing of Prolog-style terms using the
/// [`parlex`] SLR(1) core library. It builds upon the [`TermLexer`] for tokenization
/// and produces [`Term`] values stored in an [`Arena`] for efficient allocation.
///
/// Operator definitions are resolved dynamically through an [`OperDefs`] table,
/// allowing user-defined or default operators to control how expressions are
/// grouped and nested according to their **fixity**, **precedence**, and
/// **associativity**.
///
/// /// # Input / Output
///
/// - **Input**: any byte stream `I` implementing
///   [`TryNextWithContext<Arena, Item = u8, Error: std::fmt::Display + 'static>`].
/// - **Output**: completed parsing units as [`TermToken`] values.
///
/// # End Tokens and Multiple Sentences
///
/// The underlying lexer typically emits an explicit [`TokenID::End`] token at
/// the end of a *parsing unit* (end of “sentence” or expression). The parser
/// uses this to finalize and emit one result. If the input contains multiple
/// independent sentences, you will receive multiple results — one per `End` —
/// and `None` only after all input is consumed.
///
/// # Empty Statements
///
/// The terms grammar also accepts an *empty* term, which is returned
/// as a token with [`Value::None`].
/// This occurs, for example, when the last statement in the input is terminated
/// by a semicolon (`.`) but followed by no further expression. In that case:
///
/// 1. The parser first emits the token for the preceding completed term.
/// 2. It then emits an additional token representing the *empty* term
///    (`Value::None`).
/// 3. Finally, it returns `None`, indicating the end of the input stream.
///
/// This design allows the parser to fully reflect the structure of the input.
///
/// # Errors
///
/// All failures are surfaced through a composed
/// [`ParserError<LexerError<I::Error, CalcError>, CalcError, CalcToken>`]:
/// - `I::Error` — errors from the input source,
/// - [`TermParserError`] — lexical/semantic errors (e.g., UTF-8, integer parsing,
///   symbol-table issues).
///
/// # Example
///
/// ```rust
/// # use arena_terms_parser::{Encoding, TermToken, TermTokenParser, TokenID, Value};
/// # use arena_terms::Arena;
/// # use try_next::{IterInput, TryNextWithContext};
/// let mut arena = Arena::try_with_default_opers().unwrap();
/// let input = IterInput::from("hello = 1 .\n foo =\n [5, 3, 2].\n (world, hello, 10).\n\n1000".bytes());
/// let mut parser = TermTokenParser::try_new(input, Encoding::Utf8).unwrap();
/// let vs = parser.try_collect_with_context(&mut arena).unwrap();
/// assert_eq!(vs.len(), 4);
/// ```
///
/// [`Arena`]: arena_terms::Arena
/// [`Term`]: arena_terms::Term
/// [`OperDefs`]: crate::OperDefs
/// [`TermLexer`]: crate::TermLexer
/// [`TermToken`]: crate::TermToken
pub struct TermTokenParser<I>
where
    I: TryNextWithContext<Arena, Item = u8, Error: std::fmt::Display + 'static>,
{
    parser: Parser<TermLexer<I>, TermParserDriver<TermLexer<I>>, Arena>,
}

impl<I> TermTokenParser<I>
where
    I: TryNextWithContext<Arena, Item = u8, Error: std::fmt::Display + 'static>,
{
    /// Creates a new [`TermTokenParser`] for the given input stream and operator definitions.
    ///
    /// # Parameters
    /// - `input`: A fused iterator over bytes to be parsed.
    /// - `arena`: A term arena, used to initialized default operator defs.
    ///
    /// # Returns
    /// A fully initialized [`TermParser`] ready to parse Prolog-like terms.
    ///
    /// # Errors
    /// Returns an error if the lexer context cannot be initialized
    /// or if the generated parser tables fail to load.
    pub fn try_new(input: I, encoding: Encoding) -> Result<Self, ParlexError> {
        let lexer = TermLexer::try_new(input, encoding)?;
        let driver = TermParserDriver {
            _marker: PhantomData,
            terms: Vec::new(),
        };
        let parser = Parser::new(lexer, driver);
        Ok(Self { parser })
    }
}

/// Defines or extends operator definitions directly from a Prolog-like
/// `op/6` term list read from an input source.
///
/// This allows dynamic addition of new operator fixities and precedence
/// rules during parsing.
///
/// # Parameters
/// - `arena`: Arena allocator used for constructing term structures.
/// - `defs_input`: Input byte iterator yielding the operator definition terms.
/// - `encoding`: Input encoding of the definitions stream.
///
/// # Errors
/// Returns an error if parsing the operator term list fails or produces
/// an invalid operator specification.
pub fn define_opers<I>(arena: &mut Arena, defs_input: I, encoding: Encoding) -> Result<(), ParlexError>
where
    I: TryNextWithContext<Arena, Item = u8, Error: std::fmt::Display + 'static>,
{
    let mut defs_parser = TermParser::try_new(defs_input, encoding)?;
    while let Some(term) = defs_parser.try_next_with_context(arena)? {
        arena
            .define_opers(term)
            .map_err(|e| ParlexError::from_err(e, None))?;
    }
    Ok(())
}

impl<I> TryNextWithContext<Arena, (LexerStats, ParserStats)> for TermTokenParser<I>
where
    I: TryNextWithContext<Arena, Item = u8, Error: std::fmt::Display + 'static>,
{
    /// Tokens produced by this lexer.
    type Item = TermToken;

    /// Unified error type.
    type Error = ParlexError;

    /// Advances the parser and returns the next token, or `None` at end of input.
    ///
    /// The provided `context` (an [`Arena`]) may be mutated by rule
    /// actions (for example, to intern terms). This method is fallible;
    /// both input and lexical errors are converted into [`Self::Error`].
    ///
    /// # End of Input
    ///
    /// When the lexer reaches the end of the input stream, it will typically
    /// emit a final [`TokenID::End`] token before returning `None`.
    ///
    /// This explicit *End* token is expected by the **Parlex parser** to
    /// signal successful termination of a complete parsing unit.
    /// Consumers should treat this token as a logical *end-of-sentence* or
    /// *end-of-expression* marker, depending on the grammar.
    ///
    /// If the input contains **multiple independent sentences or expressions**,
    /// the lexer may emit multiple `End` tokens—one after each completed unit.
    /// In such cases, the parser can restart or resume parsing after each `End`
    /// to produce multiple parse results from a single input stream.
    ///
    /// Once all input has been consumed, the lexer returns `None`.
    fn try_next_with_context(
        &mut self,
        context: &mut Arena,
    ) -> Result<Option<TermToken>, ParlexError> {
        self.parser.try_next_with_context(context)
    }

    fn stats(&self) -> (LexerStats, ParserStats) {
        self.parser.stats()
    }
}

/// Prolog-like term parser with operator precedence and associativity handling.
///
/// The [`TermParser`] drives the parsing of Prolog-style terms using the
/// [`parlex`] SLR(1) core library. It builds upon the [`TermTokenParser`] for tokenization
/// and produces [`Term`] values stored in an [`Arena`] for efficient allocation.
///
/// Operator definitions are resolved dynamically through an [`OperDefs`] table,
/// allowing user-defined or default operators to control how expressions are
/// grouped and nested according to their **fixity**, **precedence**, and
/// **associativity**.
///
/// /// # Input / Output
///
/// - **Input**: any byte stream `I` implementing
///   [`TryNextWithContext<Arena, Item = u8>`].
/// - **Output**: completed parsing units as [`TermToken`] values.
///
/// # End Tokens and Multiple Sentences
///
/// The underlying parser  emits an explicit tokens at
/// the end of a *parsing unit* (end of “sentence” or expression). The parser
/// uses this to finalize and emit one result. If the input contains multiple
/// independent sentences, you will receive multiple results — one per `End` —
/// and `None` only after all input is consumed.
///
/// # Empty Statements
///
/// The terms grammar also accepts an *empty* term, which is returned
/// as a token with [`Value::None`].
/// This occurs, for example, when the last statement in the input is terminated
/// by a semicolon (`.`) but followed by no further expression. In that case:
///
/// 1. The parser first emits the token for the preceding completed term.
/// 2. It then emits an additional token representing the *empty* term
///    (`Value::None`).
/// 3. Finally, it returns `None`, indicating the end of the input stream.
///
/// This design allows the parser to fully reflect the structure of the input.
///
/// # Errors
///
/// All failures are surfaced through a composed
/// [`ParserError<LexerError<I::Error, CalcError>, CalcError, CalcToken>`]:
/// - `I::Error` — errors from the input source,
/// - [`TermParserError`] — lexical/semantic errors (e.g., UTF-8, integer parsing,
///   symbol-table issues).
///
/// # Example
///
/// ```rust
/// # use arena_terms_parser::{Encoding, TermToken, TermParser, TokenID, Value};
/// # use arena_terms::Arena;
/// # use try_next::{IterInput, TryNextWithContext};
/// let mut arena = Arena::try_with_default_opers().unwrap();
/// let input = IterInput::from("hello = 1 .\n foo =\n [5, 3, 2].\n (world, hello, 10).\n\n1000".bytes());
/// let mut parser = TermParser::try_new(input, Encoding::Utf8).unwrap();
/// let vs = parser.try_collect_with_context(&mut arena).unwrap();
/// assert_eq!(vs.len(), 4);
/// ```
///
/// [`Arena`]: arena_terms::Arena
/// [`Term`]: arena_terms::Term
/// [`OperDefs`]: crate::OperDefs
/// [`TermLexer`]: crate::TermLexer
/// [`TermToken`]: crate::TermToken
pub struct TermParser<I>
where
    I: TryNextWithContext<Arena, Item = u8, Error: std::fmt::Display + 'static>,
{
    pub(crate) parser: TermTokenParser<I>,
}

impl<I> TermParser<I>
where
    I: TryNextWithContext<Arena, Item = u8, Error: std::fmt::Display + 'static>,
{
    /// Creates a new [`TermParser`] for the given input stream and operator definitions.
    ///
    /// # Parameters
    /// - `input`: A fused iterator over bytes to be parsed.
    /// - `arena`: A term arena, used to initialized default operator defs.
    ///
    /// # Returns
    /// A fully initialized [`TermParser`] ready to parse Prolog-like terms.
    ///
    /// # Errors
    /// Returns an error if the lexer context cannot be initialized
    /// or if the generated parser tables fail to load.
    pub fn try_new(input: I, encoding: Encoding) -> Result<Self, ParlexError> {
        let parser: TermTokenParser<I> = TermTokenParser::try_new(input, encoding)?;
        Ok(Self { parser })
    }
}

impl<I> TryNextWithContext<Arena, (LexerStats, ParserStats)> for TermParser<I>
where
    I: TryNextWithContext<Arena, Item = u8, Error: std::fmt::Display + 'static>,
{
    /// Tokens produced by this lexer.
    type Item = Term;

    /// Unified error type.
    type Error = ParlexError;

    /// Advances the parser and returns the next token, or `None` at end of input.
    ///
    /// The provided `context` (an [`Arena`]) may be mutated by rule
    /// actions (for example, to intern terms). This method is fallible;
    /// both input and lexical errors are converted into [`Self::Error`].
    ///
    /// # End of Input
    ///
    /// When the lexer reaches the end of the input stream, it will typically
    /// emit a final [`TokenID::End`] token before returning `None`.
    ///
    /// This explicit *End* token is expected by the **Parlex parser** to
    /// signal successful termination of a complete parsing unit.
    /// Consumers should treat this token as a logical *end-of-sentence* or
    /// *end-of-expression* marker, depending on the grammar.
    ///
    /// If the input contains **multiple independent sentences or expressions**,
    /// the lexer may emit multiple `End` tokens—one after each completed unit.
    /// In such cases, the parser can restart or resume parsing after each `End`
    /// to produce multiple parse results from a single input stream.
    ///
    /// Once all input has been consumed, the lexer returns `None`.
    fn try_next_with_context(&mut self, context: &mut Arena) -> Result<Option<Term>, ParlexError> {
        while let Some(TermToken { value, .. }) = self.parser.try_next_with_context(context)? {
            match value {
                Value::Term(term) => return Ok(Some(term)),
                Value::None => continue,
                Value::Index(_) => {
                    return Err(ParlexError {
                        message: format!("index token not expected"),
                        span: None,
                    });
                }
            }
        }
        Ok(None)
    }

    fn stats(&self) -> (LexerStats, ParserStats) {
        self.parser.stats()
    }
}

/// Unit tests for the [`TermParser`] implementation.
#[cfg(test)]
mod tests {
    use super::*;
    use try_next::IterInput;

    const SAMPLE_DEFS: &str = r#"[
op(==(x,y),infix,350,none),
op(!=(x,y),infix,350,none),
op( <(x,y),infix,350,none),
op( >(x,y),infix,350,none),
op(<=(x,y),infix,350,none),
op(>=(x,y),infix,350,none),
op('+'(x,y),infix,380,left),
op('-'(x,y),infix,380,left),
op('-'(x),postfix,900,left, rename_to=some('postfix_minus')),
op('*'(x,y),infix,400,left),
op('/'(x,y),infix,400,left),
op('+'(x),prefix,800,right),
op(and(x,y),infix,300,left),
op(or(x,y),infix,250,left),
op(not(x),prefix,800,right),
]"#;

    fn parse(arena: &mut Arena, defs: Option<&str>, s: &str) -> Vec<Term> {
        let input = IterInput::from(s.bytes());
        let mut parser = TermParser::try_new(input, Encoding::Utf8).expect("cannot create parser");
        if let Some(defs) = defs {
            let defs_input = IterInput::from(defs.bytes());
            define_opers(arena, defs_input, Encoding::Utf8).expect("cannot define ops");
        }
        let ts = parser
            .try_collect_with_context(arena)
            .expect("parser error");
        dbg!(parser.stats());
        ts
    }

    #[test]
    fn one_term() {
        let _ = env_logger::builder().is_test(true).try_init();
        let arena = &mut Arena::try_with_default_opers().unwrap();
        let ts = parse(arena, Some(SAMPLE_DEFS), " . . 2 * 2 <= 5 . .");
        dbg!(&ts);
        let s = format!("{}", ts[0].display(arena));
        dbg!(&s);
        assert_eq!(ts.len(), 1);
        assert_eq!(s, "'<='('*'(2, 2), 5)");
    }

    /// String interpolation with a surrounding tighter operator.
    ///
    /// `+` at precedence 380 binds tighter than `++` at 500 (default).
    /// Both legacy and arena-terms emit outer parens around the interpolated string:
    ///   "a{x}b" + 1  →  ("a" ++ (x) ++ "b") + 1
    ///
    /// Without outer parens, precedence resolution would still produce the same
    /// parse tree here (because `+` binds tighter, it gets reduced first inside
    /// the `++` chain), but the outer parens ensure correctness in edge cases
    /// with mixed-associativity same-precedence operators.
    #[test]
    fn string_interpolation_outer_paren_isolation() {
        let _ = env_logger::builder().is_test(true).try_init();
        let arena = &mut Arena::try_with_default_opers().unwrap();
        let ts = parse(arena, Some(SAMPLE_DEFS), r#""a{xx}b" + 1 ."#);
        assert_eq!(ts.len(), 1);
        let s = format!("{}", ts[0].display(arena));
        //   '+'('++'('++'("a", xx), "b"), 1)
        assert_eq!(s, r#"'+'('++'('++'("a", xx), "b"), 1)"#);
    }

    /// A bare non-interpolated string `"hello"` is wrapped as `( "hello" )` by
    /// the lexer, but the parser unwraps unary tuples so the resulting term is
    /// just `"hello"` (no surrounding structure).
    #[test]
    fn bare_string_unwraps_to_plain_string() {
        let _ = env_logger::builder().is_test(true).try_init();
        let arena = &mut Arena::try_with_default_opers().unwrap();
        let ts = parse(arena, None, r#""hello" ."#);
        assert_eq!(ts.len(), 1);
        assert_eq!(format!("{}", ts[0].display(arena)), r#""hello""#);
    }

    /// Bare strings used as function arguments: `foo("hello", "world")`.
    /// Despite the lexer emitting outer parens around each string, they unwrap
    /// correctly as distinct arguments.
    #[test]
    fn bare_strings_as_func_args() {
        let _ = env_logger::builder().is_test(true).try_init();
        let arena = &mut Arena::try_with_default_opers().unwrap();
        let ts = parse(arena, None, r#"foo("hello", "world") ."#);
        assert_eq!(ts.len(), 1);
        assert_eq!(
            format!("{}", ts[0].display(arena)),
            r#"foo("hello", "world")"#
        );
    }

    /// Prefix operator applied to an interpolated string.
    ///
    /// `-` at prec 800 (prefix, right-assoc) binds tighter than `++` at 500.
    /// Without outer parens, `- "a{xx}b"` would parse as `(-"a") ++ xx ++ "b"`,
    /// applying the minus only to the first string piece. The outer parens
    /// ensure the minus applies to the entire interpolated string:
    ///   - ("a" ++ xx ++ "b")
    #[test]
    fn prefix_op_on_interpolated_string() {
        let _ = env_logger::builder().is_test(true).try_init();
        let arena = &mut Arena::try_with_default_opers().unwrap();
        let ts = parse(arena, Some(SAMPLE_DEFS), r#"- "a{xx}b" ."#);
        assert_eq!(ts.len(), 1);
        let s = format!("{}", ts[0].display(arena));
        // Minus applies to the whole interpolated string, not just "a"
        assert_eq!(s, r#"'-'('++'('++'("a", xx), "b"))"#);
    }

    /// Prefix operator on a bare (non-interpolated) string also works —
    /// the outer `( STR )` unwraps so the prefix applies directly.
    #[test]
    fn prefix_op_on_bare_string() {
        let _ = env_logger::builder().is_test(true).try_init();
        let arena = &mut Arena::try_with_default_opers().unwrap();
        let ts = parse(arena, None, r#"- "hello" ."#);
        assert_eq!(ts.len(), 1);
        assert_eq!(format!("{}", ts[0].display(arena)), r#"'-'("hello")"#);
    }

    #[test]
    #[should_panic]
    fn missing_ops() {
        let arena = &mut Arena::try_with_default_opers().unwrap();
        let _ts = parse(arena, None, "2 * 2 <= 5");
    }

    #[test]
    fn more_complicated_term() {
        let _ = env_logger::builder().is_test(true).try_init();
        let arena = &mut Arena::try_with_default_opers().unwrap();
        let x = "(
[(1, 2) | unit] ++ foo(baz(1e-9)),
date{2025-09-30T18:24:22.154Z},
\"aaa{
1 + 2
}bbb{
3 * 4
}ccc\",
{player = {pos = {x = 0, y = 0}, health = 100}},
)";
        let ts = parse(arena, Some(SAMPLE_DEFS), x);
        let s = format!("{}", ts[0].display(arena));
        assert_eq!(ts.len(), 1);
        assert_eq!(
            s,
            "('++'([(1, 2) | unit], foo(baz(0.000000001))), date{2025-09-30T18:24:22.154+00:00}, '++'('++'('++'('++'(\"aaa\", '+'(1, 2)), \"bbb\"), '*'(3, 4)), \"ccc\"), \"player = \\{pos = \\{x = 0, y = 0\\}, health = 100\\}\")"
        );
    }

    /// Roundtrip test: parse term string → display → reparse → redisplay.
    /// Verifies that the term printer produces output that the parser can read
    /// back to produce the same term.
    ///
    /// Each vector entry is (term_string, expected_raw_value_or_None).
    /// - term_string: Aware eXpress syntax to parse
    /// - expected_raw: if Some, the expected raw string value (for string terms only)
    ///   if None, the display of the parsed term is used for roundtrip only
    #[test]
    fn string_roundtrip_vectors() {
        let _ = env_logger::builder().is_test(true).try_init();

        // (term_syntax, expected_display, expected_raw_value_for_strings)
        // expected_display=None means "same as term_syntax"
        let vectors: Vec<(&str, Option<&str>, Option<&str>)> = vec![
            // ── Simple strings ──
            (r#""hello""#, None, Some("hello")),
            (r#""""#, None, Some("")),
            (r#""hello world""#, None, Some("hello world")),
            (r#""abc def ghi""#, None, Some("abc def ghi")),

            // ── Backslash escapes ──
            (r#""a\\b""#, None, Some("a\\b")),
            (r#""a\"b""#, None, Some("a\"b")),
            (r#""line1\nline2""#, None, Some("line1\nline2")),
            (r#""col1\tcol2""#, None, Some("col1\tcol2")),
            (r#""ret\r""#, None, Some("ret\r")),
            // Named control char escapes — roundtrip through named form
            (r#""bell\a""#, None, Some("bell\x07")),
            (r#""bs\b""#, None, Some("bs\x08")),
            (r#""ff\f""#, None, Some("ff\x0C")),
            (r#""vt\v""#, None, Some("vt\x0B")),
            (r#""esc\e""#, None, Some("esc\x1B")),
            (r#""del\d""#, None, Some("del\x7F")),
            (r#""a\\b\\c""#, None, Some("a\\b\\c")),
            (r#""\\\\""#, None, Some("\\\\")),
            (r#""\\""#, None, Some("\\")),

            // ── Brace escapes (string interpolation prevention) ──
            (r#""hello \{world\}""#, None, Some("hello {world}")),
            (r#""\{""#, None, Some("{")),
            (r#""\}""#, None, Some("}")),
            (r#""\{\}""#, None, Some("{}")),
            (r#""a\{b\}c""#, None, Some("a{b}c")),
            (r#""nested \{a \{b\} c\}""#, None, Some("nested {a {b} c}")),
            (r#""\\attrDef\{name\}\{value\}""#, None, Some("\\attrDef{name}{value}")),
            (r#""\\vDefine\{r_\}\{text\}""#, None, Some("\\vDefine{r_}{text}")),

            // ── Hex escapes ──
            (r#""\x41""#, Some(r#""A""#), Some("A")),
            (r#""\x00""#, Some(r#""\x00""#), Some("\x00")),
            (r#""\x7E""#, Some(r#""~""#), Some("~")),
            // (r#""\xFF""#, None, None), // high byte — not valid UTF-8, skip

            // ── Octal escapes ──
            (r#""\101""#, Some(r#""A""#), Some("A")),
            (r#""\0""#, Some(r#""\x00""#), Some("\x00")),
            (r#""\176""#, Some(r#""~""#), Some("~")),

            // ── Control char escapes ──
            (r#""\^A""#, Some(r#""\x01""#), Some("\x01")),
            (r#""\^Z""#, Some(r#""\x1A""#), Some("\x1A")),

            // ── Mixed escapes ──
            (r#""tab\there\nnewline""#, None, Some("tab\there\nnewline")),
            (r#""path\\to\\file\{name\}""#, None, Some("path\\to\\file{name}")),
            (r#""say \"hello\" \{world\}""#, None, Some("say \"hello\" {world}")),

            // ── String interpolation (using {expr}) ──
            // "aaa{1+2}bbb" parses as '++'('++'("aaa", '+'(1, 2)), "bbb")
            // This is NOT a simple string, it's an expression

            // ── Atoms (single-quoted) ──
            ("hello", Some("hello"), None),
            ("'hello world'", None, None),
            ("'it\\'s'", None, None),

            // ── Numbers ──
            ("42", Some("42"), None),
            ("-7", Some("-7"), None),
            ("3.14", Some("3.14"), None),
            ("0", Some("0"), None),
            ("0.0", Some("0.0"), None),

            // ── Lists ──
            ("[1, 2, 3]", Some("[1, 2, 3]"), None),
            ("[]", Some("nil"), None),
            (r#"["a", "b", "c"]"#, Some(r#"["a", "b", "c"]"#), None),

            // ── Compound terms ──
            ("foo(1, 2)", Some("foo(1, 2)"), None),
            (r#"f("hello \{world\}")"#, Some(r#"f("hello \{world\}")"#), None),

            // ── Tuples ──
            // {expr} at expression level is a raw string with balanced braces
            ("{1, 2}", Some(r#""1, 2""#), Some("1, 2")),
            ("{1, 2, 3}", Some(r#""1, 2, 3""#), Some("1, 2, 3")),
            ("{hello {world} end}", Some(r#""hello \{world\} end""#), Some("hello {world} end")),

            // ── Edge cases ──
            (r#""  spaces  ""#, None, Some("  spaces  ")),
            (r#""\n\n\n""#, None, Some("\n\n\n")),
            (r#""\t\t""#, None, Some("\t\t")),
            (r#""abc\ndef\tghi""#, None, Some("abc\ndef\tghi")),
        ];

        let arena = &mut Arena::try_with_default_opers().unwrap();

        for (i, (term_str, expected_display, expected_raw)) in vectors.iter().enumerate() {
            // Parse the term string
            let terms = parse(arena, None, &format!("{} .", term_str));
            assert!(
                !terms.is_empty(),
                "vector {}: failed to parse: {}",
                i, term_str
            );
            let term = terms[0];

            // Check raw value for string terms
            if let Some(raw) = expected_raw {
                match term.view(arena).unwrap() {
                    View::Str(s) => {
                        assert_eq!(
                            s, *raw,
                            "vector {}: raw value mismatch for {}\n  got:      {:?}\n  expected: {:?}",
                            i, term_str, s, raw
                        );
                    }
                    _ => {
                        // Not a string — skip raw check
                    }
                }
            }

            // Display the term
            let displayed = format!("{}", term.display(arena));
            let expected_disp = expected_display.unwrap_or(term_str);
            assert_eq!(
                displayed, expected_disp,
                "vector {}: display mismatch for {}\n  got:      {}\n  expected: {}",
                i, term_str, displayed, expected_disp
            );

            // Roundtrip: reparse the displayed string
            let terms2 = parse(arena, None, &format!("{} .", displayed));
            assert!(
                !terms2.is_empty(),
                "vector {}: failed to reparse displayed: {}",
                i, displayed
            );
            let term2 = terms2[0];

            // Redisplay and compare
            let redisplayed = format!("{}", term2.display(arena));
            assert_eq!(
                redisplayed, displayed,
                "vector {}: roundtrip display mismatch\n  original:    {}\n  displayed:   {}\n  redisplayed: {}",
                i, term_str, displayed, redisplayed
            );

            // Check raw value roundtrip for strings
            if let Some(raw) = expected_raw {
                match term2.view(arena).unwrap() {
                    View::Str(s) => {
                        assert_eq!(
                            s, *raw,
                            "vector {}: roundtrip raw value mismatch\n  got:      {:?}\n  expected: {:?}",
                            i, s, raw
                        );
                    }
                    _ => {}
                }
            }
        }
    }
}