2018-05-10 22:51:08 -07:00
|
|
|
use "core/metaprogramming.nom"
|
|
|
|
use "core/text.nom"
|
|
|
|
use "core/operators.nom"
|
|
|
|
use "core/collections.nom"
|
|
|
|
use "core/control_flow.nom"
|
|
|
|
|
|
|
|
compile [using %definitions %body, using %definitions do %body] to
|
|
|
|
%setup_lua <-
|
|
|
|
Lua ".."
|
2018-05-30 17:20:22 -07:00
|
|
|
local fell_through = false
|
2018-05-10 22:51:08 -07:00
|
|
|
local ok, ret = pcall(function()
|
|
|
|
\(%definitions as lua statements)
|
2018-05-30 17:20:22 -07:00
|
|
|
fell_through = true
|
|
|
|
end)
|
2018-05-10 22:51:08 -07:00
|
|
|
%body_lua <-
|
|
|
|
Lua ".."
|
2018-05-30 17:20:22 -07:00
|
|
|
local fell_through = false
|
2018-05-10 22:51:08 -07:00
|
|
|
local ok, ret = pcall(function()
|
|
|
|
\(%body as lua statements)
|
2018-05-30 17:20:22 -07:00
|
|
|
fell_through = true
|
|
|
|
end)
|
2018-05-10 22:51:08 -07:00
|
|
|
remove free vars (declare locals in %setup_lua) from %body_lua
|
|
|
|
%lua <-
|
|
|
|
Lua ".."
|
|
|
|
do
|
2018-05-30 17:20:22 -07:00
|
|
|
local old_actions, old_compile_actions, old_arg_orders = ACTIONS, COMPILE_ACTIONS, ARG_ORDERS
|
|
|
|
ACTIONS = setmetatable({}, {__index=old_actions})
|
|
|
|
COMPILE_ACTIONS = setmetatable({}, {__index=old_compile_actions})
|
|
|
|
ARG_ORDERS = setmetatable({}, {__index=old_arg_orders})
|
2018-05-10 22:51:08 -07:00
|
|
|
\%setup_lua
|
|
|
|
if not ok then
|
2018-05-30 17:20:22 -07:00
|
|
|
ACTIONS, COMPILE_ACTIONS, ARG_ORDERS = old_actions, old_compile_actions, old_arg_orders
|
|
|
|
error(ret)
|
2018-05-10 22:51:08 -07:00
|
|
|
end
|
|
|
|
if not fell_through then
|
2018-05-30 17:20:22 -07:00
|
|
|
ACTIONS, COMPILE_ACTIONS, ARG_ORDERS = old_actions, old_compile_actions, old_arg_orders
|
|
|
|
return ret
|
2018-05-10 22:51:08 -07:00
|
|
|
end
|
2018-05-30 17:20:22 -07:00
|
|
|
getmetatable(ACTIONS).__newindex = old_actions
|
|
|
|
getmetatable(COMPILE_ACTIONS).__newindex = old_compile_actions
|
|
|
|
getmetatable(ARG_ORDERS).__newindex = old_arg_orders
|
2018-05-10 22:51:08 -07:00
|
|
|
\%body_lua
|
2018-05-30 17:20:22 -07:00
|
|
|
ACTIONS, COMPILE_ACTIONS, ARG_ORDERS = old_actions, old_compile_actions, old_arg_orders
|
2018-05-10 22:51:08 -07:00
|
|
|
if not ok then
|
2018-05-30 17:20:22 -07:00
|
|
|
error(ret)
|
2018-05-10 22:51:08 -07:00
|
|
|
end
|
|
|
|
if not fell_through then
|
2018-05-30 17:20:22 -07:00
|
|
|
return ret
|
2018-05-10 22:51:08 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
declare locals in %lua
|
|
|
|
return %lua
|
|
|
|
|
2018-05-30 17:20:22 -07:00
|
|
|
parse [using %] as: using % (do nothing)
|