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
//! Unterminated sequence error type for tracking incomplete constructs.
//!
//! This module provides the [`Unterminated`] type for representing errors where a
//! multi-character sequence or operator was started but not completed before reaching
//! end-of-input or another syntactic boundary.
//!
//! # Design Philosophy
//!
//! When parsing languages with multi-character operators or sequences, it's common to
//! encounter situations where a sequence is started but never completed. This error type
//! captures both:
//!
//! - **Where** the incomplete sequence was found (via [`SimpleSpan`])
//! - **What** kind of construct was incomplete (via the generic `Knowledge` parameter)
//!
//! # Unclosed vs Unterminated
//!
//! - **`Unclosed`**: For **paired delimiters** that have distinct opening and closing forms
//! - Examples: `(...)`, `[...]`, `{...}`, `"..."`, `/*...*/`
//! - The span points to the **opening delimiter** position
//! - Used when you expect a matching closing delimiter
//!
//! - **`Unterminated`**: For **sequences or operators** that need completion
//! - Examples: GraphQL's `...` spread operator (where `.` or `..` is incomplete)
//! - Examples: `<` that should be `<=` or `<<`, `&` that should be `&&`
//! - The span points to the **incomplete sequence** position
//! - Used when you expect more characters to complete a construct
//!
//! # Type Parameter
//!
//! - `Knowledge`: The type providing context about what was incomplete (typically a string
//! or a custom enum describing the expected construct)
//!
//! # Examples
//!
//! ## GraphQL Spread Operator
//!
//! ```rust
//! use tokit::{error::Unterminated, utils::SimpleSpan};
//!
//! // In GraphQL, '...' is the spread operator
//! // If we find only '.' or '..' at EOF, it's unterminated
//! let error = Unterminated::new(SimpleSpan::new(10, 12), "spread operator");
//!
//! assert_eq!(error.span(), SimpleSpan::new(10, 12));
//! assert_eq!(error.knowledge(), "spread operator");
//! assert_eq!(error.to_string(), "unterminated spread operator");
//! ```
//!
//! ## Custom Knowledge Enum
//!
//! ```rust
//! use tokit::{error::Unterminated, utils::SimpleSpan};
//! use core::fmt;
//!
//! #[derive(Debug, Clone, Copy, PartialEq, Eq)]
//! enum Operator {
//! SpreadOperator, // ... (need 3 dots)
//! LogicalAnd, // && (need 2 ampersands)
//! LeftShift, // << (need 2 angle brackets)
//! LessOrEqual, // <= (need equals after less-than)
//! }
//!
//! impl fmt::Display for Operator {
//! fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
//! match self {
//! Self::SpreadOperator => write!(f, "spread operator '...'"),
//! Self::LogicalAnd => write!(f, "logical AND operator '&&'"),
//! Self::LeftShift => write!(f, "left shift operator '<<'"),
//! Self::LessOrEqual => write!(f, "less-than-or-equal operator '<='"),
//! }
//! }
//! }
//!
//! // Found only '&' when expecting '&&'
//! let error = Unterminated::new(SimpleSpan::new(5, 6), Operator::LogicalAnd);
//! assert_eq!(error.to_string(), "unterminated logical AND operator '&&'");
//! ```
//!
//! ## Incomplete Multi-Character Operators
//!
//! ```rust
//! use tokit::{error::Unterminated, utils::SimpleSpan};
//!
//! // Source: "if x < "
//! // pos: 5^
//! // Found '<' at EOF, could be '<', '<=', '<<', etc.
//! let error = Unterminated::new(SimpleSpan::new(5, 6), "comparison or shift operator");
//! ```
//!
//! ## Position Adjustment
//!
//! ```rust
//! use tokit::{error::Unterminated, utils::SimpleSpan};
//!
//! // Error from a nested parsing context
//! let mut error = Unterminated::new(SimpleSpan::new(5, 7), "string escape sequence");
//!
//! // Adjust to absolute position in the larger document
//! error.bump(100);
//! assert_eq!(error.span(), SimpleSpan::new(105, 107));
//! ```
use crate::;
/// A zero-copy error type representing an unterminated sequence or operator.
///
/// This type tracks the position of an incomplete multi-character sequence,
/// enabling precise error reporting for operators or constructs that require
/// additional characters to be complete.
///
/// # Type Parameter
///
/// - `Knowledge`: The type providing context about what was incomplete (typically
/// `&'static str` or a custom enum). Must implement `Display` for error messages.
///
/// # Common Use Cases
///
/// - **Incomplete spread operators**: `..` instead of `...` in GraphQL or JavaScript
/// - **Incomplete logical operators**: `&` instead of `&&`, `|` instead of `||`
/// - **Incomplete comparison operators**: `<` instead of `<=` or `<<`
/// - **Incomplete escape sequences**: `\` at end of string
/// - **Incomplete multi-char tokens**: `#` instead of `##` for token pasting
///
/// # Design
///
/// The span points to the **incomplete sequence** position (what was actually found),
/// not where the complete sequence was expected. The `Knowledge` parameter provides
/// context about what the complete sequence should have been.
///
/// # Examples
///
/// ## Detecting Incomplete Operators
///
/// ```rust
/// use tokit::{error::Unterminated, utils::SimpleSpan};
///
/// // Found '&' at position 10, expected '&&'
/// let error = Unterminated::new(SimpleSpan::new(10, 11), "logical AND operator");
///
/// println!("Error: {} at position {}", error, error.span().start());
/// // Output: "Error: unterminated logical AND operator at position 10"
/// ```
///
/// ## Tracking Multiple Unterminated Sequences
///
/// ```rust
/// use tokit::{error::Unterminated, utils::SimpleSpan};
///
/// let errors = vec![
/// Unterminated::new(SimpleSpan::new(5, 7), "spread operator"), // .. instead of ...
/// Unterminated::new(SimpleSpan::new(10, 11), "logical OR"), // | instead of ||
/// Unterminated::new(SimpleSpan::new(15, 16), "left shift"), // < instead of <<
/// ];
///
/// for error in errors {
/// eprintln!("Unterminated {} at {}", error.knowledge(), error.span());
/// }
/// ```