luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
extern crate alloc;

use crate::functions::dump_def::dump_def;
use crate::functions::dump_expr::dump_expr;
use crate::functions::dump_refinement::dump_refinement;
use crate::functions::find_rhs_expr_dump_cfg::find_rhs_expr_symbol_ast_stat_local;
use crate::functions::find_rhs_expr_dump_cfg_alt_b::find_rhs_expr_symbol_ast_stat_assign;
use crate::type_aliases::definition::Definition;
use crate::type_aliases::instruction::Instruction;
use alloc::string::String;
use luaur_ast::records::ast_expr::AstExpr;
use luaur_common::records::dense_hash_map::DenseHashMap;

pub fn dump_instruction(
    inst: *const Instruction,
    use_defs: &DenseHashMap<*mut AstExpr, *mut Definition>,
) -> String {
    unsafe {
        match &*inst {
            Instruction::Declare(decl) => {
                let mut result = format!("local {}", dump_def(decl.def));
                let rhs = find_rhs_expr_symbol_ast_stat_local((*decl.def).sym.clone(), decl.source);
                if !rhs.is_null() {
                    result.push_str(" = ");
                    result.push_str(&dump_expr(rhs, use_defs));
                }
                result
            }
            Instruction::Assign(assign) => {
                let mut result = dump_def(assign.def);
                let rhs =
                    find_rhs_expr_symbol_ast_stat_assign((*assign.def).sym.clone(), assign.source);
                if !rhs.is_null() {
                    result.push_str(" = ");
                    result.push_str(&dump_expr(rhs, use_defs));
                }
                result
            }
            Instruction::Join(join) => {
                let mut result = format!("{} = join(", dump_def(join.definition));
                for (i, operand) in join.operands.iter().enumerate() {
                    if i > 0 {
                        result.push_str(", ");
                    }
                    result.push_str(&dump_def(*operand));
                }
                result.push(')');
                result
            }
            Instruction::Refine(flow) => {
                format!(
                    "{} = refine({})",
                    dump_def(flow.definition),
                    dump_refinement(&*flow.prop)
                )
            }
        }
    }
}