1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use crate::nodes::{Expression, Prefix};
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct IndexExpression {
prefix: Prefix,
index: Expression,
}
impl IndexExpression {
pub fn new<E: Into<Expression>>(prefix: Prefix, expression: E) -> Self {
Self {
prefix,
index: expression.into(),
}
}
#[inline]
pub fn get_prefix(&self) -> &Prefix {
&self.prefix
}
#[inline]
pub fn get_index(&self) -> &Expression {
&self.index
}
#[inline]
pub fn mutate_prefix(&mut self) -> &mut Prefix {
&mut self.prefix
}
#[inline]
pub fn mutate_index(&mut self) -> &mut Expression {
&mut self.index
}
}