luaur-analysis 0.1.0

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate alloc;

use crate::functions::to_dot_to_dot::to_dot_type_id_to_dot_options;
use crate::records::to_dot_options::ToDotOptions;
use crate::type_aliases::type_id::TypeId;
use alloc::string::String;

pub fn to_dot(ty: TypeId) -> String {
    to_dot_type_id_to_dot_options(ty, &ToDotOptions::default())
}