laburnum 1.17.0

An LSP framework for building language servers and compilers, powered by an incremental query tree with content-addressed storage, task-based dataflow, and parallel queries.
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
// Copyright Two Neutron Stars Incorporated and contributors
// SPDX-License-Identifier: BlueOak-1.0.0

//! Token definition macro for chumsky-based lexers.
//!
//! This macro generates token enums, span structs, lexer parsers, and
//! helper macros for matching tokens in parsers.

/// Generates a token enum with associated lexer and matcher macros.
///
/// # Usage
///
/// ```ignore
/// use laburnum::chumsky::lexer::define_tokens;
///
/// define_tokens! {
///   #[just]  // or #[keyword]
///   Token::Keyword(Keyword -> [
///     "fn" => Fn,
///     "async" => Async #[warn "deprecated feature: {}"],
///   ])
/// }
/// ```
///
/// # Generated Items
///
/// For `Keyword` the macro generates:
///
/// - `pub enum Keyword { Fn, Async, ..., Error, Unknown }` - The token enum
/// - `pub struct KeywordSpan { keyword: Keyword, span: laburnum::Span }` - Spanned wrapper
/// - `pub fn lexer<E>() -> impl Parser<...>` - Lexer parser with trivia handling
/// - `just_keyword!(Fn)` - Match macro ignoring trivia
/// - `spanned_keyword!(Fn)` - Match macro with span
/// - `spanned_no_trivia_keyword!(Fn)` - Match macro requiring no trivia
/// - `spanned_no_trailing_trivia_keyword!(Fn)` - Match macro with leading trivia only
/// - `spanned_with_trivia_keyword!(Fn)` - Match macro exposing trivia fields
/// - `spanned_unboxed_keyword!(Fn)` - Unboxed match macro
///
/// # Cross-Crate Usage
///
/// The generated match macros use `$crate` to refer to the crate where `define_tokens!`
/// was invoked. This means they work correctly when called from other crates.
///
/// # Parser Strategy
///
/// - `#[keyword]` - Uses `chumsky::text::unicode::keyword()` which ensures the match
///   isn't part of a larger identifier. Use for language keywords.
/// - `#[just]` - Uses `just()` for exact string matching. Use for operators and delimiters.
///
/// # Reserved Tokens
///
/// Tokens can be marked with `#[warn "message"]` to indicate they are reserved or
/// deprecated. The warning message is accessible via `token.warning_message()`.
#[allow(clippy::crate_in_macro_def)]
#[macro_export]
macro_rules! define_tokens {
    // Helper to check if token is reserved - with warning (reserved)
    (#is_reserved $str:tt => $warning:literal) => {
        true
    };

    // Helper to check if token is reserved - no warning (not reserved)
    (#is_reserved $str:tt) => {
        false
    };

    // Helper to generate warning message - with warning
    (#warning_msg $str:tt => $warning:literal) => {
        Some(format!($warning, $str))
    };

    // Helper to generate warning message - no warning
    (#warning_msg $str:tt) => {
        None
    };

    // Parser for a recognized but reserved/deprecated token with a warning
    // Returns the actual variant (not Error) so caller can handle reserved tokens
    (#parser $parser:expr => $str:tt => $name:ident::$variant:ident => $warning:literal) => {
        $parser($str)
            .map_with(|_, e| {
                use $crate::chumsky::LaburnumSpanExt;
                ($name::$variant, e.create_span(), true)
            })
            .boxed()
    };

    // Parser for a valid token - captures inner span for the token
    (#parser $parser:expr => $str:tt => $name:ident::$variant:ident) => {
        $parser($str)
            .map_with(|_, e| {
                use $crate::chumsky::LaburnumSpanExt;
                ($name::$variant, e.create_span(), false)
            })
            .boxed()
    };

    // Main macro - generates enum, lexer, and matchers
    (
        #[$parser:expr]
        Token::$token_ident:ident(
            $name:ident -> [
                $(
                    $str:tt => $variant:ident $(#[warn $warning:tt])?
                ),* $(,)?
            ]
            $([ $($extra:ident),* $(,)? ])?
        )
    ) => {
        paste::paste! {
          use {
            crate::Token,
            chumsky::prelude::*,
            $crate::chumsky::LaburnumSpanExt,
            crate::parser::LexerMapExtraExt,
          };

            // -- Enum Definition --------------------------------------------------

            #[derive(Clone, Copy, PartialEq, Eq, Hash)]
            pub enum $name {
                $(
                    #[doc = "The token `" $str "`"]
                    $variant,
                )*

                $($($extra,)*)?

                Error,
                Unknown,
            }

            impl std::convert::AsRef<str> for $name {
                fn as_ref(&self) -> &str {
                    self.as_str()
                }
            }

            impl $name {
                pub fn as_str(&self) -> &str {
                    match self {
                        $(
                            | $name::$variant => $str,
                        )*
                        | _ => "",
                    }
                }

                pub fn as_variant(&self) -> &str {
                    match self {
                        $(
                            | $name::$variant => stringify!($variant),
                        )*
                        | _ => "",
                    }
                }

                /// Returns the warning message for reserved/deprecated tokens, if any.
                /// The returned string has the token text already formatted in.
                pub fn warning_message(&self) -> Option<String> {
                    match self {
                        $(
                            | $name::$variant => $crate::define_tokens!(#warning_msg $str $(=> $warning)?),
                        )*
                        | _ => None,
                    }
                }

                /// Returns true if this token is reserved/deprecated.
                pub fn is_reserved(&self) -> bool {
                    match self {
                        $(
                            | $name::$variant => $crate::define_tokens!(#is_reserved $str $(=> $warning)?),
                        )*
                        | _ => false,
                    }
                }

                $(
                    #[doc = "Check this is `" $name "::" $variant "`"]
                    pub fn [<is _ $variant:snake>](&self) -> bool {
                        match self {
                            | $name::$variant => true,
                            | _ => false,
                        }
                    }
                )*
            }

            impl From<&str> for $name {
                fn from(value: &str) -> Self {
                    match value {
                        $(
                            | $str => $name::$variant,
                        )*
                        | _ => $name::Unknown,
                    }
                }
            }

            impl std::fmt::Display for $name {
                fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
                    match self {
                        $(
                            | $name::$variant => write!(f, "{}", $str),
                        )*
                        | _ => write!(f, ""),
                    }
                }
            }

            impl std::fmt::Debug for $name {
                fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
                    match self {
                        $(
                            | $name::$variant => write!(f, "{}: {}", stringify!($variant), $str),
                        )*
                        | _ => write!(f, ""),
                    }
                }
            }

            // -- Lexer Function ---------------------------------------------------

            #[doc = "Returns a parser to match all characters in this enum and map \
                them to `" $name "`, with any leading or trailing trivia."]
            pub fn lexer<'src, E>() -> impl crate::Lexer<'src, E>
            where
                E: chumsky::error::Error<'src, &'src str>
                    + chumsky::error::LabelError<'src, &'src str, chumsky::text::TextExpected<&'src str>>
                    + chumsky::error::LabelError<'src, &'src str, chumsky::text::TextExpected<char>>
                    + chumsky::error::LabelError<'src, &'src str, chumsky::text::TextExpected<()>>
                    + 'src,
            {
                use chumsky::prelude::*;

                crate::trivia::wrap!(
                    {
                        choice([$(
                            $crate::define_tokens!(
                                #parser
                                $parser => $str => $name::$variant $(=> $warning)?
                            )
                        ,)*])
                        .boxed()
                    } -> |((leading, (variant, inner_span, is_reserved)), trailing), e| {
                      if is_reserved {
                        // This is a reserved/deprecated token - record error and create Token::Error
                        use crate::parser::LexerMapExtraExt;
                        e.record_token_error_with_span(
                          leading,
                          crate::TokenError::[<Reserved$name>] { [<$name:snake>]: variant },
                          inner_span,
                          trailing,
                        )
                      } else {
                        // Normal token
                        Token::$token_ident(leading, (variant, inner_span), trailing)
                      }
                    }
                )
            }

            // -- Match Macros -----------------------------------------------------

            /// Match a token variant, ignoring any trivia.
            /// Usage: `just!(VariantName)`
            #[allow(clippy::crate_in_macro_def)]
            #[macro_export]
            macro_rules! [< _just_ $name:snake>] {
              $(
                ($variant) => {{
                  chumsky::prelude::select! {
                    crate::lexer::Token::$token_ident(_, (crate::lexer::[<$name:snake>]::$name::$variant, _), _)
                    => crate::lexer::[<$name:snake>]::$name::$variant
                  }.labelled($str).boxed()
                }};
              )*
            }
            #[doc(hidden)]
            pub use [< _just_ $name:snake>] as just;

            /// Match a token variant with its span, ignoring any trivia.
            /// Usage: `spanned!(VariantName)`
            #[allow(clippy::crate_in_macro_def)]
            #[macro_export]
            macro_rules! [< _spanned_ $name:snake>] {
              $(
                ($variant) => {{
                  chumsky::prelude::select! {
                      crate::lexer::Token::$token_ident(_leading, (crate::lexer::[<$name:snake>]::$name::$variant, inner_span), _trailing)
                      => crate::lexer::[<$name:snake>]::[<$name Span>] {
                        [<$name:snake>]: crate::lexer::[<$name:snake>]::$name::$variant,
                              span: inner_span,
                          }
                  }
                  .boxed()
                  .labelled($str)
                }};
              )*
            }
            #[doc(hidden)]
            pub use [< _spanned_ $name:snake>] as spanned;

            /// Match a token variant with its span (unboxed), ignoring any trivia.
            /// Usage: `spanned_unboxed!(VariantName)`
            #[allow(clippy::crate_in_macro_def)]
            #[macro_export]
            macro_rules! [<_spanned_unboxed_ $name:snake>] {
              $(
                ($variant) => {{
                  chumsky::prelude::select! {
                      crate::lexer::Token::$token_ident(_leading, (crate::lexer::[<$name:snake>]::$name::$variant, inner_span), _trailing)
                      => crate::lexer::[<$name:snake>]::[<$name Span>] {
                        [<$name:snake>]: crate::lexer::[<$name:snake>]::$name::$variant,
                              span: inner_span,
                          }
                  }
                  .labelled($str)
                }};
              )*
            }
            #[doc(hidden)]
            pub use [<_spanned_unboxed_ $name:snake>] as spanned_unboxed;

            /// Match a token variant with its span and trivia.
            /// Usage: `spanned_with_trivia!(VariantName)`
            #[allow(clippy::crate_in_macro_def)]
            #[macro_export]
            macro_rules! [<_spanned_with_trivia_ $name:snake>] {
              $(
                ($variant) => {{
                    chumsky::prelude::select! {
                        crate::lexer::Token::$token_ident(leading, (crate::lexer::[<$name:snake>]::$name::$variant, inner_span), trailing)
                        => (leading, crate::lexer::[<$name:snake>]::$name::$variant, trailing, inner_span)
                    }
                    .boxed()
                    .labelled($str)
                }};
              )*
            }
            #[doc(hidden)]
            pub use [<_spanned_with_trivia_ $name:snake>] as spanned_with_trivia;

            /// Match a token variant with its span, failing if there is any leading or trailing trivia.
            /// Usage: `spanned_no_trivia!(VariantName)`
            #[allow(clippy::crate_in_macro_def)]
            #[macro_export]
            macro_rules! [<_spanned_no_trivia_ $name:snake>] {
              $(
                ($variant) => {{
                  chumsky::prelude::select! {
                      crate::lexer::Token::$token_ident(None, (crate::lexer::[<$name:snake>]::$name::$variant, inner_span), None)
                      => crate::lexer::[<$name:snake>]::[<$name Span>] {
                        [<$name:snake>]: crate::lexer::[<$name:snake>]::$name::$variant,
                              span: inner_span,
                          }
                  }
                  .boxed()
                  .labelled($str)
                }};
              )*
            }
            #[doc(hidden)]
            pub use [<_spanned_no_trivia_ $name:snake>] as spanned_no_trivia;

            /// Match a token variant with its span and leading trivia, failing if there is trailing trivia.
            /// Usage: `spanned_no_trailing_trivia!(VariantName)`
            #[allow(clippy::crate_in_macro_def)]
            #[macro_export]
            macro_rules! [<_spanned_no_trailing_trivia_ $name:snake>] {
              $(
                ($variant) => {{
                  chumsky::prelude::select! {
                      crate::lexer::Token::$token_ident(leading, (crate::lexer::[<$name:snake>]::$name::$variant, inner_span), None)
                          => (
                              leading,
                              crate::lexer::[<$name:snake>]::[<$name Span>] {
                                  [<$name:snake>]: crate::lexer::[<$name:snake>]::$name::$variant,
                                  span: inner_span,
                              }
                          )
                  }
                  .boxed()
                  .labelled($str)
                }};
              )*
            }
            #[doc(hidden)]
            pub use [<_spanned_no_trailing_trivia_ $name:snake>] as spanned_no_trailing_trivia;

            // -- Spanned Struct ---------------------------------------------------

            #[derive(Clone, PartialEq, Eq, Hash)]
            pub struct [<$name Span>] {
                pub [<$name:snake>]: $name,
                pub span: $crate::Span,
            }

            impl [<$name Span>] {
                pub fn value(&self) -> $name {
                    self.[<$name:snake>]
                }

                pub fn span(&self) -> $crate::Span {
                    self.span.clone()
                }

                /// Returns the token text as a string slice.
                pub fn as_str(&self) -> &str {
                    self.[<$name:snake>].as_str()
                }
            }

            impl From<($name, $crate::Span)> for [<$name Span>] {
                fn from(value: ($name, $crate::Span)) -> Self {
                    [<$name Span>] {
                        [<$name:snake>]: value.0,
                        span: value.1,
                    }
                }
            }

            impl std::fmt::Display for [<$name Span>] {
                fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
                    write!(f, "{}", self.[<$name:snake>])
                }
            }

            impl std::fmt::Debug for [<$name Span>] {
                fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
                    write!(
                        f,
                        "{}Span({},{:?})",
                        stringify!($name),
                        self.[<$name:snake>],
                        self.span,
                    )
                }
            }

            impl bluegum::Bluegum for [<$name Span>] {
                fn node(&self, b: &mut bluegum::Builder) {
                    use owo_colors::OwoColorize;

                    match self.[<$name:snake>] {
                        | $name::Error => b.name(format!("{}", "ERROR".bright_red()).as_str()),
                        | _ => b.name(stringify!($name)),
                    };

                    b.field(
                        &format!(
                            "{}::{}",
                            stringify!($name),
                            self.[<$name:snake>].as_variant()
                        ),
                        "",
                    )
                    .debug("span", format!("{:?}", &self.span))
                    .alt(&format!("{}", &self.[<$name:snake>].as_str()));
                }
            }
        }
    };
}

pub use define_tokens;