| 365 | /// Action on a single base token: either replace or delete. |
| 366 | #[derive(Debug, Clone)] |
| 367 | enum Action { |
| 368 | Replace(Vec<u8>), |
| 369 | Delete, |
| 370 | } |
| 371 | |
| 372 | /// Build a map from base index → action for modifications only (not keeps). |
| 373 | fn build_action_map(ops: &[EditOp]) -> HashMap<usize, Action> { |
nothing calls this directly
no outgoing calls
no test coverage detected