Check if this change has semantic layer operations.
(&self)
| 221 | |
| 222 | /// Check if this change has semantic layer operations. |
| 223 | pub fn has_file_ops(&self) -> bool { |
| 224 | !self.hashed.file_ops.is_empty() |
| 225 | } |
| 226 | |
| 227 | /// Add a hunk (graph operation) to this change. |
| 228 | pub fn add_hunk(&mut self, graph_op: GraphOp<Option<Hash>>) { |
no test coverage detected