(
&self,
path: &Path,
prev: StoredCursor,
_project_root: &Path,
max_new_bytes: Option<u64>,
)
| 265 | } |
| 266 | |
| 267 | fn parse_new( |
| 268 | &self, |
| 269 | path: &Path, |
| 270 | prev: StoredCursor, |
| 271 | _project_root: &Path, |
| 272 | max_new_bytes: Option<u64>, |
| 273 | ) -> Option<ParsedTranscript> { |
| 274 | let parent_session_id = event_session_id(&self.event, &self.transcript_path); |
| 275 | parse_cursor_jsonl(&self.event, &parent_session_id, path, prev, max_new_bytes) |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | /// Parse the newly-appended portion of one Cursor transcript file into a |
nothing calls this directly
no test coverage detected