prepare to add bracketing conditions to heap_print

This commit is contained in:
Mark Thom
2019-01-20 23:56:15 -07:00
parent 0dabb3f370
commit 498fe5247d
5 changed files with 168 additions and 26 deletions

View File

@@ -836,7 +836,7 @@ impl Ref {
#[derive(Clone, PartialEq)]
pub enum HeapCellValue {
Addr(Addr),
NamedStr(usize, ClauseName, Option<(usize, Specifier)>), // arity, name, fixity if it has one.
NamedStr(usize, ClauseName, Option<(usize, Specifier)>), // arity, name, precedence/Specifier if it has one.
}
impl HeapCellValue {