add second term expansion to capture the addition of hook predicates to the expansion process in loader.pl, loader.rs

This commit is contained in:
Mark Thom
2021-02-17 15:39:52 -07:00
parent 7670b81633
commit 396c589743
7 changed files with 120 additions and 14 deletions

View File

@@ -499,6 +499,12 @@ impl Machine {
REPLCodePtr::AbolishClause => {
self.abolish_clause();
}
REPLCodePtr::IsConsistentWithTermQueue => {
self.is_consistent_with_term_queue();
}
REPLCodePtr::FlushTermQueue => {
self.flush_term_queue();
}
}
self.machine_st.p = CodePtr::Local(p);