tokit 0.0.0

Blazing fast parser combinators: parse-while-lexing (zero-copy), deterministic LALR-style parsing, no backtracking. Flexible emitters for fail-fast runtime or greedy compiler diagnostics
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
//! Syntax definition and incomplete syntax error types.
//!
//! This module provides types for representing syntax elements with a known number
//! of components, and errors for tracking missing components during parsing.
//!
//! Two implementations are provided:
//! - **Const-generic** (default): Uses `const COMPONENTS: usize` for component count
//! - **Type-level** (with `generic-array` feature): Uses `typenum` for type-level component count
//!
//! The implementation is chosen at compile time based on feature flags.
//!
//! # Feature Flags
//!
//! - Without `generic-array`: Uses const-generic implementation
//! - With `generic-array`: Uses type-level implementation with `generic_arraydeque::ArrayLength`
//!
//! # Design Philosophy
//!
//! When parsing syntax elements that require multiple components (like variable declarations,
//! function definitions, etc.), it's valuable to track *all* missing components rather than
//! failing on the first missing one. This enables:
//!
//! - Better error messages showing all missing parts
//! - Faster development iteration (see all errors at once)
//! - More helpful IDE diagnostics
//!
//! # Examples
//!
//! ```rust
//! # {
//! use tokit::{
//!     utils::{typenum::U3, GenericArrayDeque},
//!     syntax::Syntax,
//!     error::IncompleteSyntax
//! };
//! use core::fmt;
//!
//! #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
//! struct MyLanguage;
//!
//! #[derive(Debug, Clone, PartialEq, Eq, Hash)]
//! enum WhileComponent {
//!     WhileKeyword,
//!     Condition,
//!     Body,
//! }
//!
//! impl fmt::Display for WhileComponent {
//!     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
//!         match self {
//!             Self::WhileKeyword => write!(f, "'while' keyword"),
//!             Self::Condition => write!(f, "condition"),
//!             Self::Body => write!(f, "body"),
//!         }
//!     }
//! }
//!
//! struct WhileLoop;
//!
//! impl Syntax for WhileLoop {
//!     type Component = WhileComponent;
//!     type COMPONENTS = U3;
//!     type REQUIRED = U3;
//!     type Lang = MyLanguage;
//!
//!     fn possible_components() -> &'static GenericArrayDeque<Self::Component, U3> {
//!         const COMPONENTS: &GenericArrayDeque<WhileComponent, U3> = &GenericArrayDeque::from_array([
//!             WhileComponent::WhileKeyword,
//!             WhileComponent::Condition,
//!             WhileComponent::Body,
//!         ]);
//!         COMPONENTS
//!     }
//!
//!     fn required_components() -> &'static GenericArrayDeque<Self::Component, U3> {
//!         const REQUIRED: &GenericArrayDeque<WhileComponent, U3> = &GenericArrayDeque::from_array([
//!             WhileComponent::WhileKeyword,
//!             WhileComponent::Condition,
//!             WhileComponent::Body,
//!         ]);
//!         REQUIRED
//!     }
//! }
//!
//! let mut error = IncompleteSyntax::<WhileLoop>::new(
//!     tokit::utils::SimpleSpan::new(10, 15),
//!     WhileComponent::Condition
//! );
//! assert_eq!(error.len(), 1);
//! # }
//! ```

use crate::{syntax::Syntax, utils::SimpleSpan};
use generic_arraydeque::{GenericArrayDeque, typenum::Unsigned};

use core::{
  fmt::{Debug, Display},
  hash::Hash,
};

/// Represents an incomplete syntax with missing components.
///
/// This error type is used to track which components are missing from a syntax
/// construct during parsing. It stores components as a set (no duplicates) and
/// always contains at least one missing component.
///
/// # Design Philosophy
///
/// When parsing fails, it's valuable to report *all* missing components rather
/// than just the first one encountered. This type accumulates missing components
/// up to the syntax's maximum component count.
///
/// # Examples
///
/// ## Basic Usage
///
/// ```rust
/// # {
/// use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
/// use typenum::U3;
/// use core::fmt;
///
/// #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
/// struct MyLanguage;
///
/// #[derive(Debug, Clone, PartialEq, Eq, Hash)]
/// enum IfStatementComponent {
///     IfKeyword,
///     Condition,
///     ThenBlock,
/// }
///
/// impl fmt::Display for IfStatementComponent {
///     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
///         match self {
///             Self::IfKeyword => write!(f, "'if' keyword"),
///             Self::Condition => write!(f, "condition"),
///             Self::ThenBlock => write!(f, "then block"),
///         }
///     }
/// }
///
/// struct IfStatement;
///
/// impl Syntax for IfStatement {
///     type Lang = MyLanguage;
///     type Component = IfStatementComponent;
///     type COMPONENTS = U3;
///     type REQUIRED = U3;
///
///     fn possible_components() -> &'static GenericArrayDeque<Self::Component, U3> {
///         const COMPONENTS: &GenericArrayDeque<IfStatementComponent, U3> = &GenericArrayDeque::from_array([
///            IfStatementComponent::IfKeyword,
///            IfStatementComponent::Condition,
///            IfStatementComponent::ThenBlock,
///         ]);
///         COMPONENTS
///     }
///
///     fn required_components() -> &'static GenericArrayDeque<Self::Component, U3> {
///         const REQUIRED: &GenericArrayDeque<IfStatementComponent, U3> = &GenericArrayDeque::from_array([
///             IfStatementComponent::IfKeyword,
///             IfStatementComponent::Condition,
///             IfStatementComponent::ThenBlock,
///         ]);
///         REQUIRED
///     }
/// }
///
/// // Report a missing component at a specific location
/// let error = IncompleteSyntax::<IfStatement>::new(
///     tokit::utils::SimpleSpan::new(10, 15),
///     IfStatementComponent::Condition
/// );
/// assert_eq!(error.len(), 1);
///
/// // Add more missing components
/// let mut error = error;
/// error.push(IfStatementComponent::ThenBlock);
/// assert_eq!(error.len(), 2);
/// # }
/// ```
///
/// ## Error Message Formatting
///
/// ```rust
/// # {
/// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
/// # use typenum::U2;
/// # use core::fmt;
/// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
/// # enum Component { A, B }
/// # impl fmt::Display for Component {
/// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
/// #         match self { Self::A => write!(f, "A"), Self::B => write!(f, "B") }
/// #     }
/// # }
/// # struct MyLang;
/// # struct MySyntax;
/// # impl Syntax for MySyntax {
/// #     type Component = Component;
/// #     type COMPONENTS = U2;
/// #     type REQUIRED = U2;
/// #     type Lang = MyLang;
/// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
/// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
/// #         COMPONENTS
/// #     }
/// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
/// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
/// #         REQUIRED
/// #     }
/// # }
/// let mut error = IncompleteSyntax::<MySyntax>::new(
///     tokit::utils::SimpleSpan::new(10, 15),
///     Component::A
/// );
/// assert_eq!(format!("{}", error), "incomplete syntax: component A is missing");
///
/// error.push(Component::B);
/// assert_eq!(format!("{}", error), "incomplete syntax: components A, B are missing");
/// # }
/// ```
#[derive(Debug, Clone)]
pub struct IncompleteSyntax<S: Syntax, Sp = SimpleSpan> {
  span: Sp,
  components: GenericArrayDeque<S::Component, S::COMPONENTS>,
}

impl<S, Sp> PartialEq for IncompleteSyntax<S, Sp>
where
  S: Syntax,
  Sp: PartialEq,
{
  #[cfg_attr(not(tarpaulin), inline(always))]
  fn eq(&self, other: &Self) -> bool {
    self.span == other.span && self.components == other.components
  }
}

impl<S, Sp> Eq for IncompleteSyntax<S, Sp>
where
  S: Syntax,
  Sp: Eq,
{
}

impl<S, Sp> Hash for IncompleteSyntax<S, Sp>
where
  S: Syntax,
  Sp: Hash,
{
  #[cfg_attr(not(tarpaulin), inline(always))]
  fn hash<H: core::hash::Hasher>(&self, state: &mut H) {
    self.span.hash(state);
    self.components.hash(state);
  }
}

impl<S, Sp> AsRef<[S::Component]> for IncompleteSyntax<S, Sp>
where
  S: Syntax,
{
  #[cfg_attr(not(tarpaulin), inline(always))]
  fn as_ref(&self) -> &[S::Component] {
    self.as_slice()
  }
}

impl<S, Sp> AsMut<[S::Component]> for IncompleteSyntax<S, Sp>
where
  S: Syntax,
{
  #[cfg_attr(not(tarpaulin), inline(always))]
  fn as_mut(&mut self) -> &mut [S::Component] {
    self.as_mut_slice()
  }
}

impl<S, Sp> IncompleteSyntax<S, Sp>
where
  S: Syntax,
{
  /// Creates a new incomplete syntax error with the specified span and missing component.
  ///
  /// The error always starts with at least one missing component.
  ///
  /// # Panics
  ///
  /// Panics if `S::COMPONENTS::USIZE` is 0 (which would be a malformed Syntax implementation).
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, SimpleSpan, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U1;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "A") }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U1;
  /// #     type REQUIRED = U1;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U1> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U1> = &GenericArrayDeque::from_array([Component::A]);
  /// #         COMPONENTS
  /// #     }
  /// #
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U1> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U1> = &GenericArrayDeque::from_array([Component::A]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let error = IncompleteSyntax::<MySyntax>::new(SimpleSpan::new(10, 15), Component::A);
  /// assert_eq!(error.len(), 1);
  /// assert_eq!(error.span(), SimpleSpan::new(10, 15));
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn new(span: Sp, component: S::Component) -> Self {
    if S::COMPONENTS::USIZE == 0 {
      panic!("IncompleteSyntax requires S::COMPONENTS to be non-zero");
    }
    let mut components = GenericArrayDeque::new();
    components.push_back(component);
    Self { span, components }
  }

  /// Tries to create an incomplete syntax error from a span and an iterator of components.
  ///
  /// Returns `None` if:
  /// - The iterator yields no components
  /// - The iterator yields more unique components than the buffer can hold
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, SimpleSpan, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  /// #         match self { Self::A => write!(f, "A"), Self::B => write!(f, "B") }
  /// #     }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         &COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let components = vec![Component::A, Component::B];
  /// let error = IncompleteSyntax::<MySyntax>::from_iter(SimpleSpan::new(10, 15), components).unwrap();
  /// assert_eq!(error.len(), 2);
  /// assert_eq!(error.span(), SimpleSpan::new(10, 15));
  ///
  /// // Empty iterator returns None
  /// let error = IncompleteSyntax::<MySyntax>::from_iter(SimpleSpan::new(10, 15), std::iter::empty());
  /// assert!(error.is_none());
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  #[allow(clippy::should_implement_trait)]
  pub fn from_iter(span: Sp, iter: impl IntoIterator<Item = S::Component>) -> Option<Self> {
    let mut components = GenericArrayDeque::new();
    for component in iter {
      Self::try_push_impl(&mut components, component);
    }
    (!components.is_empty()).then_some(Self { span, components })
  }

  /// Helper function that tries to push a component with deduplication logic.
  ///
  /// Returns `None` if the component was added or already exists (success),
  /// `Some(component)` if the buffer is full (failure).
  #[inline(always)]
  fn try_push_impl(
    components: &mut GenericArrayDeque<S::Component, S::COMPONENTS>,
    component: S::Component,
  ) -> Option<S::Component> {
    if components.contains(&component) {
      None
    } else {
      components.push_back(component)
    }
  }

  /// Helper function that tries to push a component with deduplication logic.
  ///
  /// Returns `None` if the component was added or already exists (success),
  /// `Some(component)` if the buffer is full (failure).
  #[inline(always)]
  fn try_push_front_impl(
    components: &mut GenericArrayDeque<S::Component, S::COMPONENTS>,
    component: S::Component,
  ) -> Option<S::Component> {
    if components.contains(&component) {
      None
    } else {
      components.push_front(component)
    }
  }

  /// Returns the number of missing components.
  ///
  /// The length is always at least 1.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  /// #         match self { Self::A => write!(f, "A"), Self::B => write!(f, "B") }
  /// #     }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(
  ///     tokit::utils::SimpleSpan::new(10, 15),
  ///     Component::A
  /// );
  /// assert_eq!(error.len(), 1);
  /// error.push(Component::B);
  /// assert_eq!(error.len(), 2);
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  #[allow(clippy::len_without_is_empty)]
  pub fn len(&self) -> usize {
    self.components.len()
  }

  /// Returns the maximum number of components this error can hold.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U3;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B, C }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "X") }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U3;
  /// #     type REQUIRED = U3;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U3> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U3> = &GenericArrayDeque::from_array([Component::A, Component::B, Component::C]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U3> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U3> = &GenericArrayDeque::from_array([Component::A, Component::B, Component::C]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let error = IncompleteSyntax::<MySyntax>::new(
  ///     tokit::utils::SimpleSpan::new(10, 15),
  ///     Component::A
  /// );
  /// assert_eq!(error.capacity(), 3);
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn capacity(&self) -> usize {
    self.components.capacity()
  }

  /// Returns `true` if the error is at full capacity.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  /// #         match self { Self::A => write!(f, "A"), Self::B => write!(f, "B") }
  /// #     }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(
  ///     tokit::utils::SimpleSpan::new(10, 15),
  ///     Component::A
  /// );
  /// assert!(!error.is_full());
  /// error.push(Component::B);
  /// assert!(error.is_full());
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn is_full(&self) -> bool {
    self.components.is_full()
  }

  /// Pushes a new missing component into the error.
  ///
  /// If the component already exists in the error, this is a no-op (silently succeeds).
  /// This maintains the set semantics where each component appears at most once.
  ///
  /// # Panics
  ///
  /// Panics if the error is already full and the component is not already present.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  /// #         match self { Self::A => write!(f, "A"), Self::B => write!(f, "B") }
  /// #     }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(
  ///     tokit::utils::SimpleSpan::new(10, 15),
  ///     Component::A
  /// );
  /// error.push(Component::B);
  /// // Pushing the same component again is a no-op
  /// error.push(Component::A);
  /// assert_eq!(error.len(), 2);
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn push(&mut self, component: S::Component) {
    if self.try_push(component).is_some() {
      panic!("IncompleteSyntax buffer overflow: cannot push more components")
    }
  }

  /// Pushes a new missing component into the error from the front.
  ///
  /// If the component already exists in the error, this is a no-op (silently succeeds).
  /// This maintains the set semantics where each component appears at most once.
  ///
  /// # Panics
  ///
  /// Panics if the error is already full and the component is not already present.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  /// #         match self { Self::A => write!(f, "A"), Self::B => write!(f, "B") }
  /// #     }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(
  ///     tokit::utils::SimpleSpan::new(10, 15),
  ///     Component::A
  /// );
  /// error.push_front(Component::B);
  /// // Pushing the same component again is a no-op
  /// error.push_front(Component::A);
  /// assert_eq!(error.len(), 2);
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn push_front(&mut self, component: S::Component) {
    if self.try_push_front(component).is_some() {
      panic!("IncompleteSyntax buffer overflow: cannot push more components")
    }
  }

  /// Tries to push a new missing component into the error.
  ///
  /// Returns:
  /// - `None` if the component was added or already exists (success)
  /// - `Some(component)` if the buffer is full and the component is not present (failure)
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B, C }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "X") }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(
  ///     tokit::utils::SimpleSpan::new(10, 15),
  ///     Component::A
  /// );
  /// assert!(error.try_push(Component::B).is_none()); // Success
  /// assert_eq!(error.try_push(Component::C), Some(Component::C)); // Full!
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn try_push(&mut self, component: S::Component) -> Option<S::Component> {
    Self::try_push_impl(&mut self.components, component)
  }

  /// Tries to push a new missing component into the error from the front.
  ///
  /// Returns:
  /// - `None` if the component was added or already exists (success)
  /// - `Some(component)` if the buffer is full and the component is not present (failure)
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B, C }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "X") }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(
  ///     tokit::utils::SimpleSpan::new(10, 15),
  ///     Component::A
  /// );
  /// assert!(error.try_push_front(Component::B).is_none()); // Success
  /// assert_eq!(error.try_push_front(Component::C), Some(Component::C)); // Full!
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn try_push_front(&mut self, component: S::Component) -> Option<S::Component> {
    Self::try_push_front_impl(&mut self.components, component)
  }

  /// Returns a slice of the missing components.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  /// #         match self { Self::A => write!(f, "A"), Self::B => write!(f, "B") }
  /// #     }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(
  ///     tokit::utils::SimpleSpan::new(10, 15),
  ///     Component::A
  /// );
  /// error.push(Component::B);
  /// assert_eq!(error.as_slice(), &[Component::A, Component::B]);
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn as_slice(&self) -> &[S::Component] {
    self.components.as_slices().0
  }

  /// Returns a mutable slice of the missing components.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  /// #         match self { Self::A => write!(f, "A"), Self::B => write!(f, "B") }
  /// #     }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Lang = MyLang;
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(
  ///     tokit::utils::SimpleSpan::new(10, 15),
  ///     Component::A
  /// );
  /// error.as_mut_slice()[0] = Component::B;
  /// assert_eq!(error.as_slice()[0], Component::B);
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn as_mut_slice(&mut self) -> &mut [S::Component] {
    self.components.as_mut_slices().0
  }

  /// Returns an iterator over the missing components.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, SimpleSpan, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U2;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A, B }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
  /// #         match self { Self::A => write!(f, "A"), Self::B => write!(f, "B") }
  /// #     }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U2;
  /// #     type REQUIRED = U2;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U2> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U2> = &GenericArrayDeque::from_array([Component::A, Component::B]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(SimpleSpan::new(10, 15), Component::A);
  /// error.push(Component::B);
  /// let collected: Vec<_> = error.iter().collect();
  /// assert_eq!(collected, vec![&Component::A, &Component::B]);
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn iter(&self) -> generic_arraydeque::Iter<'_, S::Component> {
    self.components.iter()
  }

  /// Returns the span of the incomplete syntax.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, SimpleSpan, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U1;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "A") }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U1;
  /// #     type REQUIRED = U1;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U1> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U1> = &GenericArrayDeque::from_array([Component::A]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U1> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U1> = &GenericArrayDeque::from_array([Component::A]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let error = IncompleteSyntax::<MySyntax>::new(SimpleSpan::new(10, 15), Component::A);
  /// assert_eq!(error.span(), SimpleSpan::new(10, 15));
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub const fn span(&self) -> Sp
  where
    Sp: Copy,
  {
    self.span
  }

  /// Returns a reference to the span of the incomplete syntax.
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub const fn span_ref(&self) -> &Sp {
    &self.span
  }

  /// Returns a mutable reference to the span of the incomplete syntax.
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub const fn span_mut(&mut self) -> &mut Sp {
    &mut self.span
  }

  /// Bumps the span by the given offset.
  ///
  /// This is useful when adjusting error positions after processing or
  /// when combining errors from different parsing contexts.
  ///
  /// # Examples
  ///
  /// ```rust
  /// # {
  /// # use tokit::{utils::{typenum, SimpleSpan, GenericArrayDeque}, syntax::Syntax, error::IncompleteSyntax};
  /// # use typenum::U1;
  /// # use core::fmt;
  /// # #[derive(Debug, Clone, PartialEq, Eq, Hash)]
  /// # enum Component { A }
  /// # impl fmt::Display for Component {
  /// #     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "A") }
  /// # }
  /// # struct MyLang;
  /// # struct MySyntax;
  /// # impl Syntax for MySyntax {
  /// #     type Component = Component;
  /// #     type COMPONENTS = U1;
  /// #     type REQUIRED = U1;
  /// #     type Lang = MyLang;
  /// #     fn possible_components() -> &'static GenericArrayDeque<Component, U1> {
  /// #         const COMPONENTS: &GenericArrayDeque<Component, U1> = &GenericArrayDeque::from_array([Component::A]);
  /// #         COMPONENTS
  /// #     }
  /// #     fn required_components() -> &'static GenericArrayDeque<Component, U1> {
  /// #         const REQUIRED: &GenericArrayDeque<Component, U1> = &GenericArrayDeque::from_array([Component::A]);
  /// #         REQUIRED
  /// #     }
  /// # }
  /// let mut error = IncompleteSyntax::<MySyntax>::new(SimpleSpan::new(10, 15), Component::A);
  /// error.bump(5);
  /// assert_eq!(error.span(), SimpleSpan::new(15, 20));
  /// # }
  /// ```
  #[cfg_attr(not(tarpaulin), inline(always))]
  pub fn bump(&mut self, offset: &Sp::Offset) -> &mut Self
  where
    Sp: crate::lexer::Span,
  {
    self.span.bump(offset);
    self
  }
}

impl<S, Sp> Display for IncompleteSyntax<S, Sp>
where
  S: Syntax,
{
  #[inline]
  fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
    let components = self.as_slice();

    if components.len() == 1 {
      write!(
        f,
        "incomplete syntax: component {} is missing",
        components[0]
      )
    } else {
      write!(f, "incomplete syntax: components ")?;
      for (i, component) in components.iter().enumerate() {
        if i > 0 {
          write!(f, ", ")?;
        }
        write!(f, "{}", component)?;
      }
      write!(f, " are missing")
    }
  }
}

impl<S, Sp> core::error::Error for IncompleteSyntax<S, Sp>
where
  S: Syntax + Debug,
  Sp: Debug,
{
}