40844d9720
- ErrorBuilder moves to errors.lua - Queue moves to queue.lua - String helpers move to strings.lua - Table helpers move to tables.lua - Type checking moves to types.lua
24 lines
425 B
Lua
24 lines
425 B
Lua
unused_args = false
|
|
allow_defined_top = true
|
|
|
|
globals = {
|
|
"table",
|
|
"string",
|
|
"minetest",
|
|
"model"
|
|
}
|
|
|
|
read_globals = {
|
|
--string = {fields = {"split"}},
|
|
--table = {fields = {"copy", "getn"}},
|
|
|
|
-- Builtin
|
|
"vector", "ItemStack",
|
|
"DIR_DELIM", "VoxelArea", "Settings",
|
|
|
|
"libuix", "import", "ui", "UNIT_TEST", "DEBUG",
|
|
|
|
-- libuix operator replacement functions
|
|
"eq", "ne", "lt", "gt", "le", "ge", "land", "lor", "lnot"
|
|
}
|