luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::records::class_user_data::ClassUserData;

impl ClassUserData {
    // The C++ virtual destructor is handled by Rust's Drop trait or trait object cleanup.
    // For a base class with a virtual destructor, we provide an empty Drop implementation
    // if needed, but usually Rust's Box<dyn Trait> handles this automatically.
}

impl Drop for ClassUserData {
    fn drop(&mut self) {
        // virtual ~ClassUserData() {}
    }
}