luaur-analysis 0.1.0

Luau type checker and type inference (Rust).
Documentation
use alloc::vec::Vec;
use luaur_ast::records::ast_array::AstArray;
use luaur_ast::records::ast_array::AstArray as AstArrayAlias;
use luaur_ast::records::ast_expr::AstExpr;
use luaur_ast::records::ast_expr_constant_string::AstExprConstantString;
use luaur_ast::records::ast_expr_interp_string::AstExprInterpString;
use luaur_ast::records::ast_node::AstNode;
use luaur_common::macros::luau_assert::LUAU_ASSERT;

use core::ffi::c_char;

use crate::functions::similar::similar;

pub fn case_ast_expr_interp_string() {
    // Function body translation not possible: required parameters/return type and call site context are not provided.
    // This schedule item is a CASE branch that requires access to `le` and `re` pointers (AstExprInterpString) and calls `similar`.
    // Without the original function signature/body context, emit a conservative stub.
    LUAU_ASSERT!(false);
}