mirror of
https://github.com/Reuh/anselme.git
synced 2025-10-28 00:59:31 +00:00
13 lines
217 B
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
|
|
}
|