Enable gathering of all comments encountered.
(&mut self)
| 506 | |
| 507 | // Enable gathering of all comments encountered. |
| 508 | fn start_gathering_comments(&mut self) { |
| 509 | debug_assert!(!self.gathering_comments); |
| 510 | self.gathering_comments = true; |
| 511 | debug_assert!(self.gathered_comments.is_empty()); |
| 512 | } |
| 513 | |
| 514 | // Claim the comments gathered up to the current position for the |
| 515 | // given entity. |
no outgoing calls
no test coverage detected