rustpython-parser 0.1.0

Parser for python code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use]
extern crate log;
use lalrpop_util::lalrpop_mod;

pub mod ast;
pub mod error;
mod fstring;
pub mod lexer;
pub mod parser;
lalrpop_mod!(
    #[allow(clippy::all)]
    python
);
pub mod token;