prolog_parser 0.7.14

An operator precedence parser for rusty-wam, an up and coming ISO Prolog implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate num;
extern crate ordered_float;

// external parts (those used directly in rusty-wam)
#[macro_use] pub mod tabled_rc;
#[macro_use] pub mod ast;
#[macro_use] pub mod macros;
pub mod string_list;
pub mod parser;

// internal parts.
mod put_back_n;
mod lexer;