2019-04-15 22:40:02 -07:00
|
|
|
use crate::common::*;
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
2019-09-21 15:35:03 -07:00
|
|
|
pub(crate) enum State<'a> {
|
2019-04-15 22:40:02 -07:00
|
|
|
Normal,
|
|
|
|
Indented { indentation: &'a str },
|
|
|
|
Text,
|
|
|
|
Interpolation { interpolation_start: Position },
|
|
|
|
}
|