1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-28 00:59:31 +00:00
anselme/anselme/ast/Undefined.lua

13 lines
217 B
Lua

local ast = require("anselme.ast")
return ast.abstract.Runtime {
type = "undefined",
init = function(self) end,
_format = function(self)
return "<undefined>"
end,
truthy = function(self) return false end
}