luau-analyze 0.0.1

In-process Luau type checker for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- expect: fail
--!strict

type User = {
    id: string,
    active: boolean,
}

local user: User = {
    id = 123,
    active = true,
}

print(user)