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
use ;
use ;
use SyntaxToken;
/// An error indicating a mismatch between expected and actual syntax token kinds.
///
/// This error occurs when attempting to cast a [`SyntaxToken`] to a typed [`CstToken`](crate::cst::CstToken)
/// type, but the token's kind doesn't match the expected kind for that type. This is the
/// token-equivalent of [`CstNodeMismatch`](super::CstNodeMismatch).
///
/// # Design
///
/// `CstTokenMismatch` provides:
/// - **Type information**: The expected kind that was requested
/// - **Actual token**: The original token that failed to cast
/// - **Error recovery**: Methods to extract the original token for retry
/// - **Debugging**: Clear error messages with both expected and found kinds
///
/// # Type Parameters
///
/// - `N`: The typed [`CstToken`] type that was expected
///
/// # Common Scenarios
///
/// This error typically occurs when:
/// 1. **Dynamic casting**: Attempting to cast without checking [`can_cast()`](crate::cst::CstElement::can_cast) first
/// 2. **Malformed input**: The parser produced an unexpected token sequence
/// 3. **Grammar changes**: Code expects an old token kind after grammar updates
/// 4. **Enum casting**: An enum token variant doesn't match any expected kinds
///
/// # Examples
///
/// ## Basic Error Handling
///
/// ```rust,ignore
/// use tokit::cst::{CstToken, error};
///
/// let result = Colon::try_cast_token(syntax_token);
///
/// match result {
/// Ok(colon) => {
/// // Successfully cast
/// println!("Found colon at: {:?}", colon.syntax().text_range());
/// }
/// Err(mismatch) => {
/// // Cast failed - log the error
/// eprintln!("Type mismatch: {}", mismatch);
/// eprintln!("Expected: {:?}", mismatch.expected());
/// eprintln!("Found: {:?}", mismatch.found().kind());
/// eprintln!("Text: {}", mismatch.found().text());
/// }
/// }
/// ```
///
/// ## Recovering from Errors and Retrying
///
/// ```rust,ignore
/// use tokit::cst::error::CstTokenMismatch;
///
/// // Try to cast to a comma first
/// let result = Comma::try_cast_token(syntax_token);
///
/// let separator = match result {
/// Ok(comma) => Separator::Comma(comma),
/// Err(mismatch) => {
/// // Recover the original syntax token
/// let (expected_kind, original_token) = mismatch.into_components();
///
/// // Try casting to a semicolon instead
/// match Semicolon::try_cast_token(original_token) {
/// Ok(semicolon) => Separator::Semicolon(semicolon),
/// Err(e) => return Err(e.into()),
/// }
/// }
/// };
/// ```
///
/// ## Safe Casting with Validation
///
/// ```rust,ignore
/// use tokit::cst::{CstToken, SyntaxTreeElement};
///
/// // Check before casting to avoid errors
/// let token = if Comma::can_cast(syntax_token.kind()) {
/// Comma::try_cast_token(syntax_token).unwrap()
/// } else {
/// // Handle unexpected token gracefully
/// return Err(ParseError::ExpectedComma {
/// found: syntax_token.kind(),
/// position: syntax_token.text_range(),
/// });
/// };
/// ```
///
/// ## Using in Error Propagation
///
/// ```rust,ignore
/// use tokit::cst::{CstToken, error};
///
/// fn parse_punctuation(
/// token: SyntaxToken<MyLanguage>
/// ) -> Result<Punctuation, error::CstTokenMismatch<Punctuation>> {
/// // Try casting - error automatically propagates with ?
/// let punct = Punctuation::try_cast_token(token)?;
/// Ok(punct)
/// }
/// ```