ripex 0.2.0

Multi-language structural parsing and fact extraction.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod expr;
pub mod stmt;

pub use expr::*;
pub use stmt::*;

use crate::span::Span;

#[derive(Debug, Clone)]
pub struct Program {
    pub decls: Vec<Stmt>,
    pub span: Span,
}