luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
use crate::functions::find_ast_ancestry_of_position_ast_query_alt_b::find_ast_ancestry_of_position_ast_stat_block_position_bool;
use crate::records::source_module::SourceModule;
use alloc::vec::Vec;
use luaur_ast::records::ast_node::AstNode;
use luaur_ast::records::ast_stat_block::AstStatBlock;
use luaur_ast::records::position::Position;

pub fn find_ast_ancestry_of_position_source_module_position_bool(
    source: &SourceModule,
    pos: Position,
    include_types: bool,
) -> Vec<*mut AstNode> {
    if source.root.is_null() {
        return Vec::new();
    }
    find_ast_ancestry_of_position_ast_stat_block_position_bool(
        unsafe { &*source.root },
        pos,
        include_types,
    )
}

// Alias to match the published interface name
#[allow(non_snake_case)]
pub fn find_ast_ancestry_of_position(
    source: &SourceModule,
    pos: Position,
    include_types: bool,
) -> Vec<*mut AstNode> {
    find_ast_ancestry_of_position_source_module_position_bool(source, pos, include_types)
}