()
| 195 | assert_eq!(out.source_for_addr(12), Some(("a.hll", 11))); |
| 196 | assert_eq!( |
| 197 | out.source_for_addr(1000), |
| 198 | Some(("a.hll", 11)), |
| 199 | "past the end" |
| 200 | ); |
| 201 | |
| 202 | // line -> pc: lowest address attributed to the line. |
| 203 | assert_eq!(out.addr_for_source("a.hll", 10), Some(4)); |
nothing calls this directly
no test coverage detected