ripex 0.3.0

Multi-language structural parsing and fact extraction.
Documentation
#[derive(Clone, Copy, Debug)]
pub struct Context {
    pub in_loop: bool,
    pub in_function: bool,
    pub in_switch: bool,
}

impl Context {
    pub fn new() -> Self {
        Context {
            in_loop: false,
            in_function: false,
            in_switch: false,
        }
    }
}

impl Default for Context {
    fn default() -> Self {
        Context::new()
    }
}