Cleanups to try/catch logic and object logic.
This commit is contained in:
parent
7cd4f276b7
commit
e7bdc35aa8
@ -373,11 +373,11 @@ immediately
|
|||||||
end)
|
end)
|
||||||
if ok then
|
if ok then
|
||||||
\(%success as lua statements)
|
\(%success as lua statements)
|
||||||
end
|
if not fell_through then
|
||||||
if not ok then
|
return ret
|
||||||
|
end
|
||||||
|
else
|
||||||
\(%fallback as lua statements)
|
\(%fallback as lua statements)
|
||||||
elseif not fell_through then
|
|
||||||
return ret
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
parse [try %action] as
|
parse [try %action] as
|
||||||
@ -401,19 +401,14 @@ immediately
|
|||||||
Lua ".."
|
Lua ".."
|
||||||
do
|
do
|
||||||
local fell_through = false
|
local fell_through = false
|
||||||
local ok, ret1 = pcall(function()
|
local ok, ret = pcall(function()
|
||||||
\(%action as lua statements)
|
\(%action as lua statements)
|
||||||
fell_through = true
|
fell_through = true
|
||||||
end)
|
end)
|
||||||
local ok2, ret2 = pcall(function()
|
\(%final_action as lua statements)
|
||||||
\(%final_action as lua statements)
|
if not ok then error(ret) end
|
||||||
end)
|
if not fell_through then return ret end
|
||||||
if not ok then error(ret1) end
|
end
|
||||||
if not ok2 then error(ret2) end
|
|
||||||
if not fell_through then
|
|
||||||
return ret1
|
|
||||||
end
|
|
||||||
end --do-then-always
|
|
||||||
|
|
||||||
# Inline thunk:
|
# Inline thunk:
|
||||||
immediately
|
immediately
|
||||||
|
@ -11,22 +11,26 @@ action [new %classname %inst]
|
|||||||
immediately
|
immediately
|
||||||
parse [new %classname] as: new %classname {}
|
parse [new %classname] as: new %classname {}
|
||||||
|
|
||||||
parse [as %instance %body] as
|
compile [as %instance %body] to
|
||||||
lua> "local self;"
|
Lua ".."
|
||||||
do
|
do
|
||||||
using
|
local self = \(%instance as lua expr)
|
||||||
lua> ".."
|
local old_self = self.class:set_self(self)
|
||||||
self = \%instance
|
old_actions, ACTIONS = ACTIONS, self.class.ACTIONS
|
||||||
local cls = self.class
|
old_compile_actions, COMPILE_ACTIONS = COMPILE_ACTIONS, self.class.COMPILE_ACTIONS
|
||||||
local old_self = self.class:set_self(self)
|
old_arg_orders, ARG_ORDERS = ARG_ORDERS, self.class.ARG_ORDERS
|
||||||
ACTIONS = cls.ACTIONS
|
local fell_through = false
|
||||||
COMPILE_ACTIONS = cls.COMPILE_ACTIONS
|
local ok, ret = pcall(function()
|
||||||
ARG_ORDERS = cls.ARG_ORDERS
|
\(%body as lua statements)
|
||||||
..do
|
fell_through = true
|
||||||
%body
|
end)
|
||||||
..then always
|
|
||||||
lua> ".."
|
|
||||||
self.class:set_self(old_self)
|
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
|
parse [object %classname %class_body] as
|
||||||
using
|
using
|
||||||
|
@ -1339,10 +1339,10 @@ do
|
|||||||
varname = (NOMSU_DEFS.ident_char ^ 1 * ((-P("'") * NOMSU_DEFS.operator_char ^ 1) + NOMSU_DEFS.ident_char ^ 1) ^ 0) ^ -1
|
varname = (NOMSU_DEFS.ident_char ^ 1 * ((-P("'") * NOMSU_DEFS.operator_char ^ 1) + NOMSU_DEFS.ident_char ^ 1) ^ 0) ^ -1
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
stub_pattern = re.compile([=[ stub <- {| tok ([ ]* tok)* |} !.
|
stub_pattern = re.compile([=[ stub <- {| tok (([ ])* tok)* |} !.
|
||||||
tok <- ({'%'} %varname) / {%word}
|
tok <- ({'%'} %varname) / {%word}
|
||||||
]=], stub_defs)
|
]=], stub_defs)
|
||||||
var_pattern = re.compile("{| ((('%' {%varname}) / %word) [ ]*)+ !. |}", stub_defs)
|
var_pattern = re.compile("{| ((('%' {%varname}) / %word) ([ ])*)+ !. |}", stub_defs)
|
||||||
_running_files = { }
|
_running_files = { }
|
||||||
MAX_LINE = 80
|
MAX_LINE = 80
|
||||||
math_expression = re.compile([[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]])
|
math_expression = re.compile([[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]])
|
||||||
|
@ -290,10 +290,10 @@ class NomsuCompiler
|
|||||||
varname: (.ident_char^1 * ((-P("'") * .operator_char^1) + .ident_char^1)^0)^-1
|
varname: (.ident_char^1 * ((-P("'") * .operator_char^1) + .ident_char^1)^0)^-1
|
||||||
}
|
}
|
||||||
stub_pattern = re.compile [=[
|
stub_pattern = re.compile [=[
|
||||||
stub <- {| tok ([ ]* tok)* |} !.
|
stub <- {| tok (([ ])* tok)* |} !.
|
||||||
tok <- ({'%'} %varname) / {%word}
|
tok <- ({'%'} %varname) / {%word}
|
||||||
]=], stub_defs
|
]=], 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)=>
|
define_action: (signature, fn, is_compile_action=false)=>
|
||||||
if type(fn) != 'function'
|
if type(fn) != 'function'
|
||||||
error("Not a function: #{repr fn}")
|
error("Not a function: #{repr fn}")
|
||||||
|
@ -178,9 +178,10 @@ try
|
|||||||
do
|
do
|
||||||
barf
|
barf
|
||||||
..then always
|
..then always
|
||||||
%x <- 1
|
%x <- 3
|
||||||
..and if it barfs: do nothing
|
..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."
|
say "Control flow test passed."
|
||||||
|
|
||||||
|
@ -26,9 +26,9 @@ as: new "Dog" {barks:1}
|
|||||||
action [foo]
|
action [foo]
|
||||||
as: new "Dog" {barks:23}
|
as: new "Dog" {barks:23}
|
||||||
return: (me).barks
|
return: (me).barks
|
||||||
barf "Reached unreachable code"
|
|
||||||
|
|
||||||
assume: (foo) = 23
|
assume: (foo) = 23
|
||||||
|
..or barf: "Oops, \(foo) != 23"
|
||||||
|
|
||||||
as: new "Dog" {barks:101}
|
as: new "Dog" {barks:101}
|
||||||
try: as (new "Dog" {barks:8}) (barf)
|
try: as (new "Dog" {barks:8}) (barf)
|
||||||
|
Loading…
Reference in New Issue
Block a user