(&self, _project_root: &Path)
| 103 | } |
| 104 | |
| 105 | fn transcript_paths(&self, _project_root: &Path) -> Vec<PathBuf> { |
| 106 | let mut out = Vec::new(); |
| 107 | for root in &self.storage_roots { |
| 108 | out.extend(collect_task_api_paths(root)); |
| 109 | } |
| 110 | out |
| 111 | } |
| 112 | |
| 113 | fn parse_new( |
| 114 | &self, |
nothing calls this directly
no test coverage detected