kproc-parser 0.0.1-beta.7

minimal procedural macros parser that produce a convenient AST by including only the necessary code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! module that implement the API to parse a subset
//! of rust code by providing `KTokenStream`.
pub mod ast_nodes;
pub mod core;
pub mod errors;
pub mod fmt;
pub mod kattr;
pub mod kfunc;
pub mod kimpl;
pub mod kparser;
pub mod kstruct;
pub mod ktrait;
pub mod ty;