| 1590 | /// Array index expression: array[index] |
| 1591 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 1592 | pub struct ArrayIndexExpression { |
| 1593 | pub array: Box<Expression>, |
| 1594 | pub index: Box<Expression>, |
| 1595 | pub location: Location, |
| 1596 | } |
| 1597 | |
| 1598 | /// IS predicate types |
| 1599 | #[derive(Debug, Clone, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected