Saves the parse cursor for a transcript path. Best-effort.
(&self, path: &str, offset: ParseOffset)
| 3901 | |
| 3902 | /// Saves the parse cursor for a transcript path. Best-effort. |
| 3903 | pub async fn set_parse_offset(&self, path: &str, offset: ParseOffset) { |
| 3904 | let _ = self.set_parse_offset_in_existing_tx(path, offset).await; |
| 3905 | } |
| 3906 | |
| 3907 | async fn set_parse_offset_in_existing_tx(&self, path: &str, offset: ParseOffset) -> bool { |
| 3908 | if self |
no test coverage detected