ripex 0.3.0

Multi-language structural parsing and fact extraction.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod decl;
pub mod expr;
pub mod literal;
pub mod module;
pub mod node;
pub mod pattern;
pub mod program;
pub mod stmt;

pub use node::AstNode;
pub type ExprArena = crate::arena::Arena<Expr>;
pub use decl::*;
pub use expr::*;
pub use literal::*;
pub use module::*;
pub use pattern::*;
pub use program::*;
pub use stmt::*;