1
2
3
4
5
6
7
8
9
10
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct IntegerExpression {
    pub value: i64,
}

impl IntegerExpression {
    pub fn new(value: i64) -> Self {
        Self { value }
    }
}