(&self, _project_root: &Path)
| 253 | } |
| 254 | |
| 255 | fn transcript_paths(&self, _project_root: &Path) -> Vec<PathBuf> { |
| 256 | let mut paths = vec![self.transcript_path.clone()]; |
| 257 | if self.include_subagents { |
| 258 | let parent_session_id = event_session_id(&self.event, &self.transcript_path); |
| 259 | paths.extend(cursor_subagent_paths( |
| 260 | &self.transcript_path, |
| 261 | &parent_session_id, |
| 262 | )); |
| 263 | } |
| 264 | paths |
| 265 | } |
| 266 | |
| 267 | fn parse_new( |
| 268 | &self, |
nothing calls this directly
no test coverage detected