2018-10-30 23:42:04 -07:00
|
|
|
#!/usr/bin/env nomsu -V4.8.10
|
2018-06-14 22:17:26 -07:00
|
|
|
#
|
|
|
|
This file contains basic error reporting code
|
|
|
|
|
|
|
|
use "core/metaprogramming.nom"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-11-09 14:36:15 -08:00
|
|
|
(barf %msg) compiles to "error(\(=lua "\%msg and \(%msg as lua expr) or 'nil'"), 0);"
|
2018-07-18 17:55:29 -07:00
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
(assume %condition) compiles to:
|
2018-09-14 19:17:09 -07:00
|
|
|
lua> "\
|
2018-11-08 15:23:22 -08:00
|
|
|
..local \%assumption = 'Assumption failed: '..tostring((\%condition):get_source_code())"
|
2018-07-17 23:08:13 -07:00
|
|
|
return (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
|
|
|
..if not \(%condition as lua expr) then
|
2018-07-10 15:00:01 -07:00
|
|
|
error(\(quote "\%assumption"), 0)
|
2018-09-14 19:17:09 -07:00
|
|
|
end"
|
2018-06-14 22:17:26 -07:00
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
(assume %a == %b) compiles to:
|
2018-09-14 19:17:09 -07:00
|
|
|
lua> "\
|
2018-11-08 15:23:22 -08:00
|
|
|
..local \%assumption = 'Assumption failed: '..tostring(\(\(%a == %b) as nomsu))"
|
2018-09-10 15:55:34 -07:00
|
|
|
define mangler
|
|
|
|
return (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
|
|
|
..do
|
2018-09-10 15:55:34 -07:00
|
|
|
local \(mangle "a"), \(mangle "b") = \(%a as lua expr), \(%b as lua expr)
|
|
|
|
if \(mangle "a") ~= \(mangle "b") then
|
2018-09-10 16:26:08 -07:00
|
|
|
error(\(quote "\%assumption").."\\n"..tostring(\(mangle "a")).." != "..tostring(\(..)
|
|
|
|
mangle "b"
|
|
|
|
..), 0)
|
2018-09-10 15:55:34 -07:00
|
|
|
end
|
2018-09-14 19:17:09 -07:00
|
|
|
end"
|
2018-09-10 15:55:34 -07:00
|
|
|
|
2018-11-09 14:36:15 -08:00
|
|
|
(assume %condition or barf %message) compiles to "\
|
|
|
|
..if not \(%condition as lua expr) then
|
|
|
|
error(\(%message as lua expr), 0)
|
|
|
|
end"
|
2018-06-14 23:25:05 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
try (barf) and if it succeeds: barf "try failed."
|
|
|
|
%worked = (no)
|
|
|
|
try (barf) and if it barfs: %worked = (yes)
|
|
|
|
assume %worked or barf "try/catch failed"
|
|
|
|
%x = 1
|
|
|
|
try:
|
|
|
|
%x = 2
|
|
|
|
do (barf) then always: %x = 3
|
|
|
|
..and if it barfs: do nothing
|
2018-07-22 15:01:05 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
assume (%x == 3) or barf "do/then always failed"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-06-14 23:25:05 -07:00
|
|
|
# Try/except
|
2018-10-30 23:42:04 -07:00
|
|
|
[..]
|
2018-06-18 15:44:29 -07:00
|
|
|
try %action and if it succeeds %success or if it barfs %msg %fallback
|
|
|
|
try %action and if it barfs %msg %fallback or if it succeeds %success
|
2018-11-09 14:36:15 -08:00
|
|
|
..all compile to "\
|
|
|
|
..do
|
|
|
|
local fell_through = false
|
|
|
|
local err, erred = nil, false
|
|
|
|
local ok, ret = xpcall(function()
|
2018-11-09 14:48:23 -08:00
|
|
|
\(%action as lua)
|
2018-11-09 14:36:15 -08:00
|
|
|
fell_through = true
|
|
|
|
end, function(\(=lua "\%fallback and \(%msg as lua expr) or ''"))
|
|
|
|
local ok, ret = pcall(function()
|
2018-11-09 14:48:23 -08:00
|
|
|
\((=lua "\%fallback or \%msg") as lua)
|
2018-06-18 15:44:29 -07:00
|
|
|
end)
|
2018-11-09 14:36:15 -08:00
|
|
|
if not ok then err, erred = ret, true end
|
|
|
|
end)
|
|
|
|
if ok then
|
2018-11-09 14:48:23 -08:00
|
|
|
\(%success as lua)
|
2018-11-09 14:36:15 -08:00
|
|
|
if not fell_through then
|
|
|
|
return ret
|
2018-06-14 23:25:05 -07:00
|
|
|
end
|
2018-11-09 14:36:15 -08:00
|
|
|
elseif erred then
|
|
|
|
error(err, 0)
|
|
|
|
end
|
|
|
|
end"
|
2018-06-18 15:44:29 -07:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-11-02 14:38:24 -07:00
|
|
|
#
|
|
|
|
[..]
|
|
|
|
try %action and if it succeeds %success or if it barfs %fallback
|
|
|
|
try %action and if it barfs %fallback or if it succeeds %success
|
|
|
|
..all parse as (..)
|
|
|
|
try %action and if it succeeds %success or if it barfs (=lua "") %fallback
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-11-02 14:38:24 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
(try %action) parses as (..)
|
2018-07-17 23:08:13 -07:00
|
|
|
try %action and if it succeeds (do nothing) or if it barfs (do nothing)
|
|
|
|
|
2018-11-02 14:38:24 -07:00
|
|
|
#(try %action and if it barfs %fallback) parses as (..)
|
2018-07-17 23:08:13 -07:00
|
|
|
try %action and if it succeeds (do nothing) or if it barfs %fallback
|
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
(try %action and if it barfs %msg %fallback) parses as (..)
|
2018-07-17 23:08:13 -07:00
|
|
|
try %action and if it succeeds (do nothing) or if it barfs %msg %fallback
|
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
(try %action and if it succeeds %success) parses as (..)
|
2018-07-22 13:59:08 -07:00
|
|
|
try %action and if it succeeds %success or if it barfs (do nothing)
|