luaur-analysis 0.1.0

Luau type checker and type inference (Rust).
Documentation
use luaur_ast::records::ast_local::AstLocal;
use luaur_ast::records::ast_node::AstNode;
use luaur_ast::records::ast_stat_local::AstStatLocal;
use luaur_ast::rtti::ast_node_as;

use crate::records::symbol::Symbol;

pub fn is_being_defined(ancestry: &alloc::vec::Vec<*mut AstNode>, symbol: &Symbol) -> bool {
    if symbol.local.is_null() {
        return false;
    }

    let mut iter = ancestry.len();
    while iter > 0 {
        iter -= 1;
        let node = ancestry[iter];
        let stat_local = unsafe { ast_node_as::<AstStatLocal>(node as *mut AstNode) };
        if stat_local.is_null() {
            continue;
        }

        let vars = unsafe { &(*stat_local).vars };
        for var in vars {
            if *var == symbol.local {
                return true;
            }
        }
    }

    false
}