luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
//! @interface-stub
use crate::enums::block_kind::BlockKind;
use crate::records::symbol::Symbol;
use crate::type_aliases::block_id::BlockId;
use crate::type_aliases::definition::Definition;
use crate::type_aliases::instr_id::InstrId;
use alloc::string::String;
use alloc::vec::Vec;
use luaur_common::records::dense_hash_map::DenseHashMap;

#[derive(Debug, Clone)]
pub struct Block {
    pub kind: BlockKind,
    pub debug_name: String,
    pub(crate) instructions: Vec<InstrId>,
    pub(crate) predecessors: Vec<BlockId>,
    pub(crate) successors: Vec<BlockId>,
    pub(crate) reaching_definitions: DenseHashMap<Symbol, *mut Definition>,
}

impl Block {
    /// `Block::Block(BlockKind kind, std::string debugName)`. Reference: `ControlFlowGraph.cpp:58-62`.
    pub fn new(kind: BlockKind, debug_name: String) -> Self {
        Self {
            kind,
            debug_name,
            instructions: Vec::new(),
            predecessors: Vec::new(),
            successors: Vec::new(),
            // `reachingDefinitions{Symbol{}}`.
            reaching_definitions: DenseHashMap::new(Symbol::default()),
        }
    }

    /// `bool Block::containsDefinition(Symbol sym) const`. Reference: `ControlFlowGraph.cpp:70-73`.
    pub fn contains_definition(&self, sym: Symbol) -> bool {
        self.reaching_definitions.contains(&sym)
    }

    /// `const std::vector<InstrId>& Block::getInstructions() const`.
    pub fn get_instructions(&self) -> &Vec<InstrId> {
        &self.instructions
    }

    /// `const std::vector<BlockId>& Block::getPredecessors() const`.
    pub fn get_predecessors(&self) -> &Vec<BlockId> {
        &self.predecessors
    }

    /// `Definition* Block::getReachingDefinition(Symbol sym) const`. Reference: `ControlFlowGraph.cpp:75-80`.
    pub fn get_reaching_definition(&self, sym: Symbol) -> *mut Definition {
        match self.reaching_definitions.find(&sym) {
            Some(v) => *v,
            None => core::ptr::null_mut(),
        }
    }

    /// `const std::vector<BlockId>& Block::getSuccessors() const`.
    pub fn get_successors(&self) -> &Vec<BlockId> {
        &self.successors
    }

    /// `void Block::setReachingDefinition(Symbol sym, DefId def)`. Reference: `ControlFlowGraph.cpp:82-85`.
    pub fn set_reaching_definition(&mut self, sym: Symbol, def: *mut Definition) {
        *self.reaching_definitions.get_or_insert(sym) = def;
    }
}