just 0.9.0

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::common::*;

/// A line fragment consisting either of…
#[derive(PartialEq, Debug)]
pub(crate) enum Fragment<'src> {
  /// …raw text…
  Text { token: Token<'src> },
  /// …an interpolation containing `expression`.
  Interpolation { expression: Expression<'src> },
}