luaur-ast 0.1.1

Lexer, parser, and AST for Luau (faithful Rust port).
Documentation
1
2
3
4
5
6
7
8
9
local x = 1
local y, z = 2, "hi"
local a = x + y * z - 1
local b = not a
local c = -x
local d = #z
g = a
g += 1
return a, b, c