mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-13 13:30:40 +00:00
f0c9d84461
Parses type annotations from the JSON output of `luau-ast`.
18 lines
324 B
Lua
18 lines
324 B
Lua
local function id(x)
|
|
return x
|
|
end
|
|
local function comp(f)
|
|
return function(g)
|
|
return function(x)
|
|
return f(g(x))
|
|
end
|
|
end
|
|
end
|
|
local id2 = comp(id)(id)
|
|
local nil2 = id2(nil)
|
|
local a : any = nil
|
|
local b : nil = nil
|
|
local c : (nil) -> nil = nil
|
|
local d : (any & nil) = nil
|
|
local e : any? = nil
|
|
return id2(nil2)
|