luaur-repl-cli 0.1.1

Interactive Luau REPL (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use core::ffi::c_void;

#[derive(Debug, Clone)]
pub struct Coverage {
    pub(crate) l: *mut c_void,
    pub(crate) functions: alloc::vec::Vec<i32>,
}

impl Default for Coverage {
    fn default() -> Self {
        Self {
            l: core::ptr::null_mut(),
            functions: alloc::vec::Vec::new(),
        }
    }
}