luaur-analysis 0.1.1

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::records::normalizer::Normalizer;

impl Normalizer {
    /// In C++, the default constructor is deleted.
    /// In Rust, we represent this by providing a method that panics if called.
    #[allow(dead_code)]
    pub fn normalizer(&mut self) {
        panic!("Normalizer default constructor is deleted in C++");
    }
}