Fixed permissions to work better with aliases.

This commit is contained in:
Bruce Hill 2017-10-08 15:06:05 -07:00
parent 6a429d7955
commit 529afd465f
4 changed files with 25 additions and 7 deletions

View File

@ -80,12 +80,14 @@ compile [nomsu %method %args] to: "nomsu[\(%method as lua)](nomsu, unpack(\(%arg
# Get the source code for a function # Get the source code for a function
rule [help %rule] =: rule [help %rule] =:
lua block ".." lua block ".."
|local fn_def = nomsu:get_fn_def(vars.rule); |local fn_def = nomsu.defs[nomsu:get_stub(vars.rule)]
|if not fn_def then; |if not fn_def then;
| nomsu:writeln("Rule not found: "..nomsu:repr(vars.rule)); | nomsu:writeln("Rule not found: "..nomsu:repr(vars.rule));
|else; |else;
| nomsu:writeln("rule "..nomsu:repr(nomsu.utils.keys(fn_def.stub)) | local template = fn_def.is_macro and "compile %s to%s" or "rule %s =%s";
| .." ="..(fn_def.src or ":\\n <unknown source code>")); | local src = fn_def.src or ":\\n <unknown source code>";
| if src:sub(1,1) ~= ":" and fn_def.is_macro then; template = "parse %s as: %s"; end;
| nomsu:writeln(template:format(nomsu:repr(fn_def.stub), src));
|end; |end;
# Compiler tools # Compiler tools

View File

@ -7,6 +7,14 @@ require "lib/collections.nom"
rule [standardize rules %rules] =: rule [standardize rules %rules] =:
if (lua expr "type(vars.rules) == 'string'"): %rules = [%rules] if (lua expr "type(vars.rules) == 'string'"): %rules = [%rules]
(nomsu "get_stub" [%]) for all %rules (nomsu "get_stub" [%]) for all %rules
%set = []
for %rule in %rules:
%stub = (nomsu "get_stub" [%rule])
%aliases = (((nomsu's "defs")->%stub)->"aliases")
for all %aliases: %set -> % = (yes)
keys in %set
rule [restrict %rules to within %elite-rules] =: rule [restrict %rules to within %elite-rules] =:
%rules = (standardize rules %rules) %rules = (standardize rules %rules)
%elite-rules = (standardize rules %elite-rules) %elite-rules = (standardize rules %elite-rules)

View File

@ -207,6 +207,7 @@ do
end end
assert(type(thunk) == 'function', "Bad thunk: " .. tostring(repr(thunk))) assert(type(thunk) == 'function', "Bad thunk: " .. tostring(repr(thunk)))
local canonical_args = nil local canonical_args = nil
local aliases = { }
local _list_0 = self:get_stubs(signature) local _list_0 = self:get_stubs(signature)
for _index_0 = 1, #_list_0 do for _index_0 = 1, #_list_0 do
local _des_0 = _list_0[_index_0] local _des_0 = _list_0[_index_0]
@ -228,12 +229,14 @@ do
else else
canonical_args = utils.set(arg_names) canonical_args = utils.set(arg_names)
end end
insert(aliases, stub)
self.defs[stub] = { self.defs[stub] = {
thunk = thunk, thunk = thunk,
stub = stub, stub = stub,
arg_names = arg_names, arg_names = arg_names,
src = src, src = src,
is_macro = is_macro is_macro = is_macro,
aliases = aliases
} }
end end
end, end,
@ -781,7 +784,9 @@ do
return repr(...) return repr(...)
end end
self.loaded_files = { } self.loaded_files = { }
return self:initialize_core() if not parent then
return self:initialize_core()
end
end, end,
__base = _base_0, __base = _base_0,
__name = "NomsuCompiler" __name = "NomsuCompiler"

View File

@ -191,7 +191,8 @@ class NomsuCompiler
@utils = utils @utils = utils
@repr = (...)=> repr(...) @repr = (...)=> repr(...)
@loaded_files = {} @loaded_files = {}
@initialize_core! if not parent
@initialize_core!
writeln:(...)=> writeln:(...)=>
@write(...) @write(...)
@ -200,6 +201,7 @@ class NomsuCompiler
def: (signature, thunk, src, is_macro=false)=> def: (signature, thunk, src, is_macro=false)=>
assert type(thunk) == 'function', "Bad thunk: #{repr thunk}" assert type(thunk) == 'function', "Bad thunk: #{repr thunk}"
canonical_args = nil canonical_args = nil
aliases = {}
for {stub, arg_names} in *@get_stubs(signature) for {stub, arg_names} in *@get_stubs(signature)
assert stub, "NO STUB FOUND: #{repr signature}" assert stub, "NO STUB FOUND: #{repr signature}"
if @debug then @writeln "#{colored.bright "DEFINING RULE:"} #{colored.underscore colored.magenta repr(stub)} #{colored.bright "WITH ARGS"} #{colored.dim repr(arg_names)}" if @debug then @writeln "#{colored.bright "DEFINING RULE:"} #{colored.underscore colored.magenta repr(stub)} #{colored.bright "WITH ARGS"} #{colored.dim repr(arg_names)}"
@ -208,7 +210,8 @@ class NomsuCompiler
if canonical_args if canonical_args
assert utils.equivalent(utils.set(arg_names), canonical_args), "Mismatched args" assert utils.equivalent(utils.set(arg_names), canonical_args), "Mismatched args"
else canonical_args = utils.set(arg_names) else canonical_args = utils.set(arg_names)
@defs[stub] = {:thunk, :stub, :arg_names, :src, :is_macro} insert aliases, stub
@defs[stub] = {:thunk, :stub, :arg_names, :src, :is_macro, :aliases}
defmacro: (signature, thunk, src)=> defmacro: (signature, thunk, src)=>
@def(signature, thunk, src, true) @def(signature, thunk, src, true)