python-syntax 0.1.0

Python 3 parser
Documentation
1
2
3
4
5
6
7
8
9
10
use lalrpop_util::lalrpop_mod;

pub mod ast;
lalrpop_mod!(#[allow(clippy::all)] grammar);
pub mod error;
pub mod lexer;
pub mod parser;
pub mod source;
pub mod token;
pub mod visitor;