luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
7
8
9
use crate::records::free_type_pack::FreeTypePack;
use crate::records::txn_log::TxnLog;
use crate::records::weird_iter::WeirdIter;

impl WeirdIter {
    pub fn weird_iter_can_grow(&self) -> bool {
        !unsafe { (*self.log).txn_log_get::<FreeTypePack, _>(self.pack_id) }.is_null()
    }
}