(
&mut self,
expressions: &[ast::Expr],
context: ExpressionContext,
)
| 1741 | } |
| 1742 | |
| 1743 | fn scan_expressions( |
| 1744 | &mut self, |
| 1745 | expressions: &[ast::Expr], |
| 1746 | context: ExpressionContext, |
| 1747 | ) -> SymbolTableResult { |
| 1748 | for expression in expressions { |
| 1749 | self.scan_expression(expression, context)?; |
| 1750 | } |
| 1751 | Ok(()) |
| 1752 | } |
| 1753 | |
| 1754 | fn scan_expression( |
| 1755 | &mut self, |
no test coverage detected