1
2
3
4
5
#[derive(Clone, Debug, PartialEq)]
pub enum ParseExpression {
    String(String),
    Null(),
}