Validate expression variables (helper function)
(
expr: &Expression,
ctx: &mut ValidationContext,
errors: &mut Vec<ValidationError>,
)
| 2167 | |
| 2168 | /// Validate expression variables (helper function) |
| 2169 | fn validate_expression_variables( |
| 2170 | expr: &Expression, |
| 2171 | ctx: &mut ValidationContext, |
| 2172 | errors: &mut Vec<ValidationError>, |
| 2173 | ) { |
| 2174 | validate_expression(expr, ctx, errors); |
| 2175 | } |
| 2176 | |
| 2177 | /// Validate CALL statement |
| 2178 | fn validate_call_statement( |
no test coverage detected