Reverted to ACTIONS instead of ACTION and added 'show lua %' macro.
This commit is contained in:
parent
e8d5d2a240
commit
3661754ed9
@ -98,13 +98,13 @@ immediately:
|
|||||||
|
|
||||||
action [remove action %stub]:
|
action [remove action %stub]:
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local fn = ACTION[\%stub];
|
local fn = ACTIONS[\%stub];
|
||||||
local metadata = ACTION_METADATA[fn];
|
local metadata = ACTION_METADATA[fn];
|
||||||
for i=#metadata.aliases,1,-1 do
|
for i=#metadata.aliases,1,-1 do
|
||||||
metadata.arg_orders[metadata.aliases[i]] = nil;
|
metadata.arg_orders[metadata.aliases[i]] = nil;
|
||||||
table.remove(metadata.aliases, i);
|
table.remove(metadata.aliases, i);
|
||||||
end
|
end
|
||||||
ACTION[\%stub] = nil;
|
ACTIONS[\%stub] = nil;
|
||||||
|
|
||||||
immediately:
|
immediately:
|
||||||
action [%tree as lua]:
|
action [%tree as lua]:
|
||||||
@ -141,7 +141,7 @@ immediately:
|
|||||||
compile [%var as lua identifier] to {expr:"nomsu:var_to_lua_identifier(\(%var as lua expr))"}
|
compile [%var as lua identifier] to {expr:"nomsu:var_to_lua_identifier(\(%var as lua expr))"}
|
||||||
|
|
||||||
action [action %names metadata]:
|
action [action %names metadata]:
|
||||||
=lua "ACTION_METADATA[ACTION[\%names]]"
|
=lua "ACTION_METADATA[ACTIONS[\%names]]"
|
||||||
|
|
||||||
# Get the source code for a function
|
# Get the source code for a function
|
||||||
action [help %action]:
|
action [help %action]:
|
||||||
@ -159,6 +159,12 @@ immediately:
|
|||||||
parse [enable debugging] as: lua> "nomsu.debug = true;"
|
parse [enable debugging] as: lua> "nomsu.debug = true;"
|
||||||
parse [disable debugging] as: lua> "nomsu.debug = false;"
|
parse [disable debugging] as: lua> "nomsu.debug = false;"
|
||||||
|
|
||||||
|
immediately:
|
||||||
|
compile [show lua %block] to:
|
||||||
|
lua> ".."
|
||||||
|
local \%lua = nomsu:tree_to_lua(\%block);
|
||||||
|
return {statements = "print("..repr(\%lua.statements or \%lua.expr)..");"};
|
||||||
|
|
||||||
immediately:
|
immediately:
|
||||||
compile [say %message] to:
|
compile [say %message] to:
|
||||||
lua> ".."
|
lua> ".."
|
||||||
|
@ -33,8 +33,8 @@ compile [as %instance %body] to:
|
|||||||
statements: ".."
|
statements: ".."
|
||||||
do
|
do
|
||||||
local self = \(%instance as lua expr);
|
local self = \(%instance as lua expr);
|
||||||
local global_actions = ACTION;
|
local global_actions = ACTIONS;
|
||||||
local ACTION = setmetatable({}, {__index=function(_,key)
|
local ACTIONS = setmetatable({}, {__index=function(_,key)
|
||||||
local method = self[key];
|
local method = self[key];
|
||||||
if method then return (function(...) return method(self, ...); end); end
|
if method then return (function(...) return method(self, ...); end); end
|
||||||
return global_actions[key];
|
return global_actions[key];
|
||||||
|
21
nomsu.lua
21
nomsu.lua
@ -212,9 +212,9 @@ do
|
|||||||
for sig_i = 1, #stubs do
|
for sig_i = 1, #stubs do
|
||||||
local stub, args = stubs[sig_i], stub_args[sig_i]
|
local stub, args = stubs[sig_i], stub_args[sig_i]
|
||||||
if self.debug then
|
if self.debug then
|
||||||
print(tostring(colored.bright("ALIAS:")) .. " " .. tostring(colored.underscore(colored.magenta(repr(stub)))) .. " " .. tostring(colored.bright("WITH ARGS")) .. " " .. tostring(colored.dim(repr(args))) .. " ON: " .. tostring(self.environment.ACTION))
|
print(tostring(colored.bright("ALIAS:")) .. " " .. tostring(colored.underscore(colored.magenta(repr(stub)))) .. " " .. tostring(colored.bright("WITH ARGS")) .. " " .. tostring(colored.dim(repr(args))) .. " ON: " .. tostring(self.environment.ACTIONS))
|
||||||
end
|
end
|
||||||
self.environment.ACTION[stub] = fn
|
self.environment.ACTIONS[stub] = fn
|
||||||
if not (fn_info.isvararg) then
|
if not (fn_info.isvararg) then
|
||||||
local arg_positions
|
local arg_positions
|
||||||
do
|
do
|
||||||
@ -941,7 +941,12 @@ do
|
|||||||
}
|
}
|
||||||
elseif "FunctionCall" == _exp_0 then
|
elseif "FunctionCall" == _exp_0 then
|
||||||
insert(self.compilestack, tree)
|
insert(self.compilestack, tree)
|
||||||
local fn = rawget(self.environment.ACTION, tree.stub)
|
local ok, fn = pcall(function()
|
||||||
|
return self.environment.ACTIONS[tree.stub]
|
||||||
|
end)
|
||||||
|
if not ok then
|
||||||
|
fn = nil
|
||||||
|
end
|
||||||
local metadata = self.environment.ACTION_METADATA[fn]
|
local metadata = self.environment.ACTION_METADATA[fn]
|
||||||
if metadata and metadata.compile_time then
|
if metadata and metadata.compile_time then
|
||||||
local args
|
local args
|
||||||
@ -1043,7 +1048,7 @@ do
|
|||||||
end
|
end
|
||||||
remove(self.compilestack)
|
remove(self.compilestack)
|
||||||
return {
|
return {
|
||||||
expr = self.__class:comma_separated_items("ACTION[" .. tostring(repr(tree.stub)) .. "](", args, ")")
|
expr = self.__class:comma_separated_items("ACTIONS[" .. tostring(repr(tree.stub)) .. "](", args, ")")
|
||||||
}
|
}
|
||||||
elseif "Text" == _exp_0 then
|
elseif "Text" == _exp_0 then
|
||||||
local concat_parts = { }
|
local concat_parts = { }
|
||||||
@ -1369,15 +1374,13 @@ do
|
|||||||
}
|
}
|
||||||
end)
|
end)
|
||||||
self:define_action("run file %filename", get_line_no(), function(_filename)
|
self:define_action("run file %filename", get_line_no(), function(_filename)
|
||||||
return {
|
return nomsu:run_file(_filename)
|
||||||
expr = "nomsu:run_file(" .. tostring(nomsu:tree_to_lua(filename).expr) .. ")"
|
|
||||||
}
|
|
||||||
end)
|
end)
|
||||||
return self:define_compile_action("use %filename", get_line_no(), function(_filename)
|
return self:define_compile_action("use %filename", get_line_no(), function(_filename)
|
||||||
local filename = nomsu:tree_to_value(_filename)
|
local filename = nomsu:tree_to_value(_filename)
|
||||||
nomsu:use_file(filename)
|
nomsu:use_file(filename)
|
||||||
return {
|
return {
|
||||||
expr = "nomsu:use_file(" .. tostring(repr(filename)) .. ");"
|
expr = "nomsu:use_file(" .. tostring(repr(filename)) .. ")"
|
||||||
}
|
}
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
@ -1447,7 +1450,7 @@ do
|
|||||||
load = load,
|
load = load,
|
||||||
ipairs = ipairs
|
ipairs = ipairs
|
||||||
}
|
}
|
||||||
self.environment.ACTION = setmetatable({ }, {
|
self.environment.ACTIONS = setmetatable({ }, {
|
||||||
__index = function(self, key)
|
__index = function(self, key)
|
||||||
return error("Attempt to run undefined action: " .. tostring(key), 0)
|
return error("Attempt to run undefined action: " .. tostring(key), 0)
|
||||||
end
|
end
|
||||||
|
18
nomsu.moon
18
nomsu.moon
@ -169,7 +169,7 @@ class NomsuCompiler
|
|||||||
:table, :assert, :dofile, :loadstring, :type, :select, :debug, :math, :io, :pairs,
|
:table, :assert, :dofile, :loadstring, :type, :select, :debug, :math, :io, :pairs,
|
||||||
:load, :ipairs,
|
:load, :ipairs,
|
||||||
}
|
}
|
||||||
@environment.ACTION = setmetatable({}, {__index:(key)=>
|
@environment.ACTIONS = setmetatable({}, {__index:(key)=>
|
||||||
error("Attempt to run undefined action: #{key}", 0)
|
error("Attempt to run undefined action: #{key}", 0)
|
||||||
})
|
})
|
||||||
@environment.ACTION_METADATA = setmetatable({}, {__mode:"k"})
|
@environment.ACTION_METADATA = setmetatable({}, {__mode:"k"})
|
||||||
@ -196,9 +196,8 @@ class NomsuCompiler
|
|||||||
for sig_i=1,#stubs
|
for sig_i=1,#stubs
|
||||||
stub, args = stubs[sig_i], stub_args[sig_i]
|
stub, args = stubs[sig_i], stub_args[sig_i]
|
||||||
if @debug
|
if @debug
|
||||||
print "#{colored.bright "ALIAS:"} #{colored.underscore colored.magenta repr(stub)} #{colored.bright "WITH ARGS"} #{colored.dim repr(args)} ON: #{@environment.ACTION}"
|
print "#{colored.bright "ALIAS:"} #{colored.underscore colored.magenta repr(stub)} #{colored.bright "WITH ARGS"} #{colored.dim repr(args)} ON: #{@environment.ACTIONS}"
|
||||||
-- TODO: use debug.getupvalue instead of @environment.ACTION?
|
@environment.ACTIONS[stub] = fn
|
||||||
@environment.ACTION[stub] = fn
|
|
||||||
unless fn_info.isvararg
|
unless fn_info.isvararg
|
||||||
arg_positions = [fn_arg_positions[a] for a in *args]
|
arg_positions = [fn_arg_positions[a] for a in *args]
|
||||||
-- TODO: better error checking?
|
-- TODO: better error checking?
|
||||||
@ -658,8 +657,9 @@ class NomsuCompiler
|
|||||||
when "FunctionCall"
|
when "FunctionCall"
|
||||||
insert @compilestack, tree
|
insert @compilestack, tree
|
||||||
|
|
||||||
-- Rawget here to avoid triggering an error for accessing an undefined action
|
ok, fn = pcall(-> @environment.ACTIONS[tree.stub])
|
||||||
fn = rawget(@environment.ACTION, tree.stub)
|
if not ok then fn = nil
|
||||||
|
|
||||||
metadata = @environment.ACTION_METADATA[fn]
|
metadata = @environment.ACTION_METADATA[fn]
|
||||||
if metadata and metadata.compile_time
|
if metadata and metadata.compile_time
|
||||||
args = [arg for arg in *tree.value when arg.type != "Word"]
|
args = [arg for arg in *tree.value when arg.type != "Word"]
|
||||||
@ -700,7 +700,7 @@ class NomsuCompiler
|
|||||||
args = new_args
|
args = new_args
|
||||||
|
|
||||||
remove @compilestack
|
remove @compilestack
|
||||||
return expr:@@comma_separated_items("ACTION[#{repr tree.stub}](", args, ")")
|
return expr:@@comma_separated_items("ACTIONS[#{repr tree.stub}](", args, ")")
|
||||||
|
|
||||||
when "Text"
|
when "Text"
|
||||||
concat_parts = {}
|
concat_parts = {}
|
||||||
@ -936,12 +936,12 @@ class NomsuCompiler
|
|||||||
return expr: repr("#{tree.filename}:#{tree.start},#{tree.stop}")
|
return expr: repr("#{tree.filename}:#{tree.start},#{tree.stop}")
|
||||||
|
|
||||||
@define_action "run file %filename", get_line_no!, (_filename)->
|
@define_action "run file %filename", get_line_no!, (_filename)->
|
||||||
return expr:"nomsu:run_file(#{nomsu\tree_to_lua(filename).expr})"
|
return nomsu\run_file(_filename)
|
||||||
|
|
||||||
@define_compile_action "use %filename", get_line_no!, (_filename)->
|
@define_compile_action "use %filename", get_line_no!, (_filename)->
|
||||||
filename = nomsu\tree_to_value(_filename)
|
filename = nomsu\tree_to_value(_filename)
|
||||||
nomsu\use_file(filename)
|
nomsu\use_file(filename)
|
||||||
return expr:"nomsu:use_file(#{repr filename});"
|
return expr:"nomsu:use_file(#{repr filename})"
|
||||||
|
|
||||||
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
|
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
|
||||||
if arg and debug.getinfo(2).func != require
|
if arg and debug.getinfo(2).func != require
|
||||||
|
Loading…
Reference in New Issue
Block a user