Skip to main content

luaur_analysis/methods/
source_node_has_dirty_module.rs

1use luaur_ast::records::ast_expr_call::AstExprCall;
2
3pub fn should_typestate_for_first_argument(call: &AstExprCall) -> bool {
4    // TODO: magic function for setmetatable and assert and then add them
5    crate::functions::match_table_freeze::match_table_freeze(call)
6}