luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
use crate::records::cfg_builder::CfgBuilder;
use luaur_ast::records::ast_stat::AstStat;
use luaur_ast::records::ast_stat_assign::AstStatAssign;
use luaur_ast::records::ast_stat_block::AstStatBlock;
use luaur_ast::records::ast_stat_if::AstStatIf;
use luaur_ast::records::ast_stat_local::AstStatLocal;
use luaur_ast::records::ast_stat_while::AstStatWhile;
use luaur_common::macros::luau_assert::LUAU_ASSERT;

impl CfgBuilder {
    pub fn lower_ast_stat(&mut self, statement: *mut AstStat) {
        unsafe {
            let p = statement as *mut luaur_ast::records::ast_node::AstNode;

            if (*p).is::<AstStatBlock>() {
                self.lower_ast_stat_block(statement as *mut AstStatBlock);
            } else if (*p).is::<AstStatLocal>() {
                self.lower_ast_stat_local(statement as *mut AstStatLocal);
            } else if (*p).is::<AstStatAssign>() {
                self.lower_ast_stat_assign(statement as *mut AstStatAssign);
            } else if (*p).is::<AstStatIf>() {
                self.lower_ast_stat_if(statement as *mut AstStatIf);
            } else if (*p).is::<AstStatWhile>() {
                self.lower_ast_stat_while(statement as *mut AstStatWhile);
            } else {
                LUAU_ASSERT!(false);
            }
        }
    }
}