protospec_build/ast/expression/
array_index.rs1use super::*;
2
3#[derive(Clone, Serialize, Deserialize)]
4pub struct ArrayIndexExpression {
5 pub array: Box<Expression>,
6 pub index: Box<Expression>,
7 pub span: Span,
8}
9impl_node!(ArrayIndexExpression);