Cleanups to try/catch logic and object logic.

This commit is contained in:
Bruce Hill 2018-06-04 17:23:02 -07:00
parent 7cd4f276b7
commit e7bdc35aa8
6 changed files with 36 additions and 36 deletions

View File

@ -373,11 +373,11 @@ immediately
end)
if ok then
\(%success as lua statements)
end
if not ok then
if not fell_through then
return ret
end
else
\(%fallback as lua statements)
elseif not fell_through then
return ret
end
end
parse [try %action] as
@ -401,19 +401,14 @@ immediately
Lua ".."
do
local fell_through = false
local ok, ret1 = pcall(function()
local ok, ret = pcall(function()
\(%action as lua statements)
fell_through = true
end)
local ok2, ret2 = pcall(function()
\(%final_action as lua statements)
end)
if not ok then error(ret1) end
if not ok2 then error(ret2) end
if not fell_through then
return ret1
end
end --do-then-always
\(%final_action as lua statements)
if not ok then error(ret) end
if not fell_through then return ret end
end
# Inline thunk:
immediately

View File

@ -11,22 +11,26 @@ action [new %classname %inst]
immediately
parse [new %classname] as: new %classname {}
parse [as %instance %body] as
lua> "local self;"
do
using
lua> ".."
self = \%instance
local cls = self.class
local old_self = self.class:set_self(self)
ACTIONS = cls.ACTIONS
COMPILE_ACTIONS = cls.COMPILE_ACTIONS
ARG_ORDERS = cls.ARG_ORDERS
..do
%body
..then always
lua> ".."
compile [as %instance %body] to
Lua ".."
do
local self = \(%instance as lua expr)
local old_self = self.class:set_self(self)
old_actions, ACTIONS = ACTIONS, self.class.ACTIONS
old_compile_actions, COMPILE_ACTIONS = COMPILE_ACTIONS, self.class.COMPILE_ACTIONS
old_arg_orders, ARG_ORDERS = ARG_ORDERS, self.class.ARG_ORDERS
local fell_through = false
local ok, ret = pcall(function()
\(%body as lua statements)
fell_through = true
end)
self.class:set_self(old_self)
ACTIONS = old_actions
COMPILE_ACTIONS = old_compile_actions
ARG_ORDERS = old_arg_orders
if not ok then error(ret) end
if not fell_through then return ret end
end
parse [object %classname %class_body] as
using

View File

@ -1339,10 +1339,10 @@ do
varname = (NOMSU_DEFS.ident_char ^ 1 * ((-P("'") * NOMSU_DEFS.operator_char ^ 1) + NOMSU_DEFS.ident_char ^ 1) ^ 0) ^ -1
}
end
stub_pattern = re.compile([=[ stub <- {| tok ([ ]* tok)* |} !.
stub_pattern = re.compile([=[ stub <- {| tok (([ ])* tok)* |} !.
tok <- ({'%'} %varname) / {%word}
]=], stub_defs)
var_pattern = re.compile("{| ((('%' {%varname}) / %word) [ ]*)+ !. |}", stub_defs)
var_pattern = re.compile("{| ((('%' {%varname}) / %word) ([ ])*)+ !. |}", stub_defs)
_running_files = { }
MAX_LINE = 80
math_expression = re.compile([[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]])

View File

@ -290,10 +290,10 @@ class NomsuCompiler
varname: (.ident_char^1 * ((-P("'") * .operator_char^1) + .ident_char^1)^0)^-1
}
stub_pattern = re.compile [=[
stub <- {| tok ([ ]* tok)* |} !.
stub <- {| tok (([ ])* tok)* |} !.
tok <- ({'%'} %varname) / {%word}
]=], stub_defs
var_pattern = re.compile "{| ((('%' {%varname}) / %word) [ ]*)+ !. |}", stub_defs
var_pattern = re.compile "{| ((('%' {%varname}) / %word) ([ ])*)+ !. |}", stub_defs
define_action: (signature, fn, is_compile_action=false)=>
if type(fn) != 'function'
error("Not a function: #{repr fn}")

View File

@ -178,9 +178,10 @@ try
do
barf
..then always
%x <- 1
%x <- 3
..and if it barfs: do nothing
assume (%x = 1) or barf "do/then always failed"
lua> "collectgarbage()"
assume (%x = 3) or barf "do/then always failed"
say "Control flow test passed."

View File

@ -26,9 +26,9 @@ as: new "Dog" {barks:1}
action [foo]
as: new "Dog" {barks:23}
return: (me).barks
barf "Reached unreachable code"
assume: (foo) = 23
..or barf: "Oops, \(foo) != 23"
as: new "Dog" {barks:101}
try: as (new "Dog" {barks:8}) (barf)