(&mut self, with_item: &WithItem)
| 1614 | } |
| 1615 | |
| 1616 | fn unparse_with_item(&mut self, with_item: &WithItem) { |
| 1617 | self.unparse_expr(&with_item.context_expr, precedence::MAX); |
| 1618 | if let Some(optional_vars) = &with_item.optional_vars { |
| 1619 | self.p(" as "); |
| 1620 | self.unparse_expr(optional_vars, precedence::MAX); |
| 1621 | } |
| 1622 | } |
| 1623 | } |
| 1624 | |
| 1625 | #[cfg(test)] |
nothing calls this directly
no test coverage detected