lua_semantics 0.9.0

semantic analysis and enhanced AST converter for lua_parser crate
Documentation
1
2
3
4
5
6
7
#[derive(Clone, Debug)]
pub enum ExprLocalVariable {
    /// on stack
    Stack(usize, String),
    /// on upvalue
    Upvalue(usize, String),
}