Rebuilt.
This commit is contained in:
parent
8c1da9a6c3
commit
c575ad1041
39
nomsu.lua
39
nomsu.lua
@ -392,45 +392,6 @@ do
|
|||||||
end
|
end
|
||||||
return code:gsub("\n", "\n" .. (" "):rep(levels))
|
return code:gsub("\n", "\n" .. (" "):rep(levels))
|
||||||
end,
|
end,
|
||||||
assert_permission = function(self, stub)
|
|
||||||
local fn_def = self.defs[stub]
|
|
||||||
if not (fn_def) then
|
|
||||||
self:error("Undefined function: " .. tostring(fn_name))
|
|
||||||
end
|
|
||||||
local whiteset = fn_def.whiteset
|
|
||||||
if whiteset == nil then
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
local _list_0 = self.callstack
|
|
||||||
for _index_0 = 1, #_list_0 do
|
|
||||||
local caller = _list_0[_index_0]
|
|
||||||
if caller ~= "#macro" and whiteset[caller[1]] then
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return self:error("You do not have the authority to call: " .. tostring(stub))
|
|
||||||
end,
|
|
||||||
check_permission = function(self, fn_def)
|
|
||||||
if getmetatable(fn_def) ~= functiondef_mt then
|
|
||||||
local fn_name = fn_def
|
|
||||||
fn_def = self.defs[fn_name]
|
|
||||||
if fn_def == nil then
|
|
||||||
self:error("Undefined function: " .. tostring(fn_name))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
local whiteset = fn_def.whiteset
|
|
||||||
if whiteset == nil then
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
local _list_0 = self.callstack
|
|
||||||
for _index_0 = 1, #_list_0 do
|
|
||||||
local caller = _list_0[_index_0]
|
|
||||||
if caller ~= "#macro" and whiteset[caller[1]] then
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return false
|
|
||||||
end,
|
|
||||||
parse = function(self, str, filename)
|
parse = function(self, str, filename)
|
||||||
self:assert(type(filename) == "string", "Bad filename type: " .. tostring(type(filename)))
|
self:assert(type(filename) == "string", "Bad filename type: " .. tostring(type(filename)))
|
||||||
if self.debug then
|
if self.debug then
|
||||||
|
Loading…
Reference in New Issue
Block a user