(&self)
| 2042 | } |
| 2043 | |
| 2044 | fn current_assignment(&self) -> Option<CurrentAssignment<'ast, 'db>> { |
| 2045 | self.current_assignments.last().copied() |
| 2046 | } |
| 2047 | |
| 2048 | fn current_assignment_mut(&mut self) -> Option<&mut CurrentAssignment<'ast, 'db>> { |
| 2049 | self.current_assignments.last_mut() |
no test coverage detected