luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
use crate::records::expr_or_local::ExprOrLocal;
use luaur_ast::functions::get_identifier::get_identifier;
use luaur_ast::records::ast_name::AstName;

impl ExprOrLocal {
    pub fn get_name(&self) -> Option<AstName> {
        let expr = self.get_expr();
        if !expr.is_null() {
            let name = get_identifier(expr);
            if !name.value.is_null() {
                return Some(name);
            }
        } else {
            let local = self.get_local();
            if !local.is_null() {
                return Some(unsafe { (*local).name });
            }
        }
        None
    }
}