farm parser out to a crate, remove it as a git submodule.

This commit is contained in:
Mark Thom
2018-09-03 21:58:07 -06:00
parent 4be20e48e6
commit ff9d2662e6
29 changed files with 471 additions and 1300 deletions

View File

@@ -1,13 +1,11 @@
extern crate num;
extern crate ordered_float;
extern crate prolog_parser;
#[macro_use] pub mod ast;
pub mod and_stack;
#[macro_use]
pub mod macros;
#[macro_use]
pub mod ast;
#[macro_use]
pub mod allocator;
#[macro_use] pub mod macros;
#[macro_use] pub mod allocator;
pub mod toplevel;
pub mod machine;
pub mod compile;
@@ -21,10 +19,6 @@ pub mod indexing;
pub mod io;
pub mod iterators;
pub mod or_stack;
#[macro_use]
pub mod parser;
pub mod heap_print;
pub mod targets;
pub mod tabled_rc;
pub mod read;
pub mod string_list;