Apply set normalization line-by-line so both sides compare order-independent.
(lines: &[String])
| 40 | |
| 41 | // Apply set normalization line-by-line so both sides compare order-independent. |
| 42 | fn normalize(lines: &[String]) -> Vec<String> { |
| 43 | lines.iter().map(|l| normalize_set(l)).collect() |
| 44 | } |
| 45 | |
| 46 | // Resume on each PendingEvent by pushing the next interactive_events entry. |
| 47 | fn drive(vm: &mut VM, interactive: &[String]) -> Result<(), VmErr> { |
no test coverage detected