10 lines
193 B
Rust
10 lines
193 B
Rust
|
use crate::common::*;
|
||
|
|
||
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
||
|
pub enum State<'a> {
|
||
|
Normal,
|
||
|
Indented { indentation: &'a str },
|
||
|
Text,
|
||
|
Interpolation { interpolation_start: Position },
|
||
|
}
|