abbreviate names in heap_iter.rs

This commit is contained in:
Mark Thom
2018-05-04 19:43:43 -06:00
parent 8974035fed
commit 2df82e6b01
5 changed files with 52 additions and 54 deletions

View File

@@ -94,10 +94,10 @@ impl MachineState {
}
pub(super) fn print_term<Fmt, Outputter>(&self, a: Addr, fmt: Fmt, output: Outputter) -> Outputter
where Fmt: HeapCellValueFormatter, Outputter: HeapCellValueOutputter
where Fmt: HCValueFormatter, Outputter: HCValueOutputter
{
let iter = HeapCellPreOrderIterator::new(&self, a);
let printer = HeapCellPrinter::new(iter, fmt, output);
let iter = HCPreOrderIterator::new(&self, a);
let printer = HCPrinter::new(iter, fmt, output);
printer.print()
}