luaur-analysis 0.1.0

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::functions::add_global_binding_builtin_definitions_alt_d::add_global_binding_builtin_definitions_alt_d;
use crate::records::binding::Binding;
use crate::records::global_types::GlobalTypes;

pub fn add_global_binding_builtin_definitions_alt_b(
    globals: &mut GlobalTypes,
    name: &str,
    binding: Binding,
) {
    let scope = globals.global_scope.clone();
    add_global_binding_builtin_definitions_alt_d(globals, &scope, name, binding);
}