move forall/2 to non_iso, correct test cases.

This commit is contained in:
Mark Thom
2019-04-03 18:12:36 -06:00
parent 9ad809680d
commit 535a6c17e9
3 changed files with 8 additions and 7 deletions

View File

@@ -143,6 +143,7 @@ impl SubModuleUser for IndexStore {
}
static BUILTINS: &str = include_str!("../lib/builtins.pl");
static NON_ISO: &str = include_str!("../lib/non_iso.pl");
static LISTS: &str = include_str!("../lib/lists.pl");
static QUEUES: &str = include_str!("../lib/queues.pl");
static ERROR: &str = include_str!("../lib/error.pl");
@@ -176,6 +177,7 @@ impl Machine {
}
fn compile_libraries(&mut self) {
compile_user_module(self, NON_ISO.as_bytes());
compile_user_module(self, LISTS.as_bytes());
compile_user_module(self, QUEUES.as_bytes());
compile_user_module(self, ERROR.as_bytes());