2018-10-30 23:42:04 -07:00
|
|
|
#!/usr/bin/env nomsu -V4.8.10
|
2018-05-15 18:55:55 -07:00
|
|
|
#
|
2018-01-11 18:51:21 -08:00
|
|
|
This file contains compile-time actions that define basic control flow structures
|
|
|
|
like "if" statements and loops.
|
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core/metaprogramming.nom"
|
|
|
|
use "core/text.nom"
|
|
|
|
use "core/operators.nom"
|
2018-06-14 22:17:26 -07:00
|
|
|
use "core/errors.nom"
|
2018-01-11 18:51:21 -08:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-01-11 18:51:21 -08:00
|
|
|
# No-Op
|
2018-07-11 14:13:43 -07:00
|
|
|
test: do nothing
|
2018-10-30 23:42:04 -07:00
|
|
|
(do nothing) compiles to (Lua "")
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Conditionals
|
2018-07-20 20:27:15 -07:00
|
|
|
test:
|
|
|
|
if (no):
|
|
|
|
barf "conditional fail"
|
2018-10-30 23:42:04 -07:00
|
|
|
(if %condition %if_body) compiles to:
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua = (Lua "if ")
|
|
|
|
%lua::append (%condition as lua expr)
|
|
|
|
%lua::append " then\n "
|
|
|
|
%lua::append (%if_body as lua statements)
|
|
|
|
%lua::append "\nend"
|
|
|
|
return %lua
|
2018-07-20 20:27:15 -07:00
|
|
|
|
|
|
|
test:
|
|
|
|
unless (yes):
|
|
|
|
barf "conditional fail"
|
2018-10-30 23:42:04 -07:00
|
|
|
(unless %condition %unless_body) parses as (if (not %condition) %unless_body)
|
|
|
|
[..]
|
2018-07-17 23:08:13 -07:00
|
|
|
if %condition %if_body else %else_body, unless %condition %else_body else %if_body
|
2018-10-30 23:42:04 -07:00
|
|
|
..all compile to:
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua = (Lua "if ")
|
|
|
|
%lua::append (%condition as lua expr)
|
|
|
|
%lua::append " then\n "
|
|
|
|
%lua::append (%if_body as lua statements)
|
|
|
|
%lua::append "\nelse\n "
|
|
|
|
%lua::append (%else_body as lua statements)
|
|
|
|
%lua::append "\nend"
|
|
|
|
return %lua
|
2018-06-18 15:44:29 -07:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-01-11 18:51:21 -08:00
|
|
|
# Conditional expression (ternary operator)
|
2018-05-15 18:55:55 -07:00
|
|
|
# Note: this uses a function instead of "(condition and if_expr or else_expr)"
|
2018-01-11 18:51:21 -08:00
|
|
|
because that breaks if %if_expr is falsey, e.g. "x < 5 and false or 99"
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
assume ((1 if (yes) else 2) == 1)
|
|
|
|
assume ((1 if (no) else 2) == 2)
|
2018-10-30 23:42:04 -07:00
|
|
|
[..]
|
2018-06-18 15:44:29 -07:00
|
|
|
%when_true_expr if %condition else %when_false_expr
|
|
|
|
%when_true_expr if %condition otherwise %when_false_expr
|
|
|
|
%when_false_expr unless %condition else %when_true_expr
|
|
|
|
%when_false_expr unless %condition then %when_true_expr
|
2018-10-30 23:42:04 -07:00
|
|
|
..all compile to:
|
2018-06-18 15:44:29 -07:00
|
|
|
# If %when_true_expr is guaranteed to be truthy, we can use Lua's idiomatic
|
|
|
|
equivalent of a conditional expression: (cond and if_true or if_false)
|
2018-07-20 20:27:15 -07:00
|
|
|
if {Text:yes, List:yes, Dict:yes, Number:yes}.(%when_true_expr.type):
|
2018-07-17 23:08:13 -07:00
|
|
|
return (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua value "\
|
|
|
|
..(\(%condition as lua expr) and \(%when_true_expr as lua expr) or \(..)
|
2018-07-20 20:27:15 -07:00
|
|
|
%when_false_expr as lua expr
|
2018-09-14 19:17:09 -07:00
|
|
|
..)"
|
2018-07-17 23:08:13 -07:00
|
|
|
..else:
|
2018-06-18 15:44:29 -07:00
|
|
|
# Otherwise, need to do an anonymous inline function (yuck, too bad lua
|
|
|
|
doesn't have a proper ternary operator!)
|
|
|
|
To see why this is necessary consider: (random()<.5 and false or 99)
|
2018-07-17 23:08:13 -07:00
|
|
|
return (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua value "\
|
|
|
|
..((function()
|
2018-06-18 15:44:29 -07:00
|
|
|
if \(%condition as lua expr) then
|
|
|
|
return \(%when_true_expr as lua expr)
|
|
|
|
else
|
|
|
|
return \(%when_false_expr as lua expr)
|
|
|
|
end
|
2018-09-14 19:17:09 -07:00
|
|
|
end)())"
|
2018-01-23 19:22:20 -08:00
|
|
|
|
2018-09-26 13:05:28 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2017-09-21 00:10:26 -07:00
|
|
|
# GOTOs
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
%i = 0
|
|
|
|
=== %loop ===
|
|
|
|
%i += 1
|
|
|
|
unless (%i == 10): go to %loop
|
|
|
|
assume (%i == 10)
|
2018-09-21 00:30:28 -07:00
|
|
|
=== (Loop) ===
|
|
|
|
%i -= 1
|
|
|
|
unless (%i == 0): go to (Loop)
|
|
|
|
assume (%i == 0)
|
2018-10-30 23:42:04 -07:00
|
|
|
[=== %label ===, --- %label ---, *** %label ***] all compile to (..)
|
|
|
|
Lua "\
|
|
|
|
..::label_\(..)
|
|
|
|
(%label.stub if (%label.type == "Action") else %label) as lua identifier
|
|
|
|
..::"
|
|
|
|
|
|
|
|
(go to %label) compiles to (..)
|
|
|
|
Lua "\
|
|
|
|
..goto label_\(..)
|
|
|
|
(%label.stub if (%label.type == "Action") else %label) as lua identifier
|
|
|
|
.."
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-01-11 04:38:46 -08:00
|
|
|
# Basic loop control
|
2018-11-02 14:38:24 -07:00
|
|
|
(stop %var) compiles to:
|
|
|
|
if %var:
|
|
|
|
return (..)
|
|
|
|
Lua "goto stop_\((%var.stub if (%var.type == "action") else %var) as lua identifier)"
|
|
|
|
..else: return (Lua "break")
|
|
|
|
(do next %var) compiles to:
|
|
|
|
if %var:
|
|
|
|
return (..)
|
|
|
|
Lua "goto continue_\((%var.stub if (%var.type == "action") else %var) as lua identifier)"
|
|
|
|
..else: return (Lua "goto continue")
|
|
|
|
[===stop %var ===, ---stop %var ---, ***stop %var ***] all compile to (..)
|
|
|
|
Lua "::stop_\((%var.stub if (%var.type == "action") else %var) as lua identifier)::"
|
|
|
|
[===next %var ===, ---next %var ---, ***next %var ***] all compile to (..)
|
|
|
|
Lua "::continue_\((%var.stub if (%var.type == "action") else %var) as lua identifier)::"
|
2018-01-11 04:38:46 -08:00
|
|
|
|
2017-09-21 00:10:26 -07:00
|
|
|
# While loops
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
%x = 0
|
|
|
|
repeat while (%x < 10): %x += 1
|
|
|
|
assume (%x == 10)
|
|
|
|
repeat while (%x < 20): stop
|
|
|
|
repeat while (%x < 20): stop repeating
|
|
|
|
assume (%x == 10)
|
|
|
|
repeat while (%x < 20):
|
|
|
|
%x += 1
|
|
|
|
if (yes): do next
|
|
|
|
barf "Failed to 'do next'"
|
2018-07-22 15:01:05 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
assume (%x == 20)
|
|
|
|
repeat while (%x < 30):
|
|
|
|
%x += 1
|
|
|
|
if (yes): do next repeat
|
|
|
|
barf "Failed to 'do next repeat'"
|
2018-07-22 15:01:05 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
assume (%x == 30)
|
2018-10-30 23:42:04 -07:00
|
|
|
(do next repeat) compiles to (Lua "goto continue_repeat")
|
|
|
|
(stop repeating) compiles to (Lua "goto stop_repeat")
|
|
|
|
(repeat while %condition %body) compiles to:
|
2018-07-18 01:27:56 -07:00
|
|
|
%lua = (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
|
|
|
..while \(%condition as lua expr) do
|
|
|
|
\(%body as lua statements)"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(do next)):
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\n ::continue::"
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(do next repeat)):
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\n ::continue_repeat::"
|
|
|
|
%lua::append "\nend --while-loop"
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(stop repeating)):
|
2018-09-28 18:34:40 -07:00
|
|
|
%inner_lua = %lua
|
|
|
|
%lua = (Lua "do -- scope of 'stop repeating' label\n ")
|
|
|
|
%lua::append %inner_lua
|
|
|
|
%lua::append "\
|
2018-10-30 23:42:04 -07:00
|
|
|
..
|
|
|
|
::stop_repeat::
|
|
|
|
end -- end of 'stop repeating' label scope"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-06-18 15:44:29 -07:00
|
|
|
return %lua
|
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
(repeat %body) parses as (repeat while (yes) %body)
|
|
|
|
(repeat until %condition %body) parses as (repeat while (not %condition) %body)
|
2018-07-30 15:05:41 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
%x = 0
|
|
|
|
repeat 10 times: %x += 1
|
|
|
|
assume (%x == 10)
|
2018-10-30 23:42:04 -07:00
|
|
|
(repeat %n times %body) compiles to:
|
2018-09-06 12:46:39 -07:00
|
|
|
define mangler
|
2018-07-18 01:27:56 -07:00
|
|
|
%lua = (..)
|
2018-09-28 22:15:06 -07:00
|
|
|
Lua "for \(mangle "i")=1,\(%n as lua expr) do\n "
|
|
|
|
%lua::append (%body as lua statements)
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(do next)):
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\n ::continue::"
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(do next repeat)):
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\n ::continue_repeat::"
|
|
|
|
%lua::append "\nend --numeric for-loop"
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(stop repeating)):
|
2018-09-28 18:34:40 -07:00
|
|
|
%inner_lua = %lua
|
|
|
|
%lua = (Lua "do -- scope of 'stop repeating' label\n ")
|
|
|
|
%lua::append %inner_lua
|
|
|
|
%lua::append "\
|
2018-10-30 23:42:04 -07:00
|
|
|
..
|
|
|
|
::stop_repeat::
|
|
|
|
end -- end of 'stop repeating' label scope"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-06-18 15:44:29 -07:00
|
|
|
return %lua
|
2018-01-23 19:22:20 -08:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2017-10-13 18:09:04 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
%nums = []
|
2018-08-29 15:59:30 -07:00
|
|
|
for %x in 1 to 5: %nums::add %x
|
2018-07-22 15:01:05 -07:00
|
|
|
assume (%nums == [1, 2, 3, 4, 5])
|
2018-07-22 13:59:08 -07:00
|
|
|
%nums = []
|
2018-08-29 15:59:30 -07:00
|
|
|
for %x in 1 to 5 via 2: %nums::add %x
|
2018-07-22 15:01:05 -07:00
|
|
|
assume (%nums == [1, 3, 5])
|
2018-07-22 13:59:08 -07:00
|
|
|
%nums = []
|
|
|
|
for %outer in 1 to 100:
|
|
|
|
for %inner in %outer to (%outer + 2):
|
|
|
|
if (%inner == 2):
|
2018-08-29 15:59:30 -07:00
|
|
|
%nums::add -2
|
2018-07-22 13:59:08 -07:00
|
|
|
do next %inner
|
2018-07-22 15:01:05 -07:00
|
|
|
|
2018-08-29 15:59:30 -07:00
|
|
|
%nums::add %inner
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%inner == 5): stop %outer
|
2018-07-22 15:01:05 -07:00
|
|
|
|
|
|
|
assume (%nums == [1, -2, 3, -2, 3, 4, 3, 4, 5])
|
2018-07-22 13:59:08 -07:00
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
# Numeric range for loops
|
2018-10-30 23:42:04 -07:00
|
|
|
[..]
|
2018-06-18 15:44:29 -07:00
|
|
|
for %var in %start to %stop by %step %body
|
|
|
|
for %var in %start to %stop via %step %body
|
2018-10-30 23:42:04 -07:00
|
|
|
..all compile to:
|
2018-06-18 15:44:29 -07:00
|
|
|
# This uses Lua's approach of only allowing loop-scoped variables in a loop
|
2018-07-20 20:27:15 -07:00
|
|
|
unless (%var.type is "Var"):
|
2018-09-28 22:15:06 -07:00
|
|
|
compile error at %var "Expected a variable here, not a \(%var.type)"
|
2018-07-18 01:27:56 -07:00
|
|
|
%lua = (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
|
|
|
..for \(%var as lua expr)=\(%start as lua expr),\(%stop as lua expr),\(..)
|
2018-07-20 20:27:15 -07:00
|
|
|
%step as lua expr
|
2018-09-28 22:15:06 -07:00
|
|
|
.. do"
|
2018-10-30 23:42:04 -07:00
|
|
|
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua::append "\n "
|
|
|
|
%lua::append (%body as lua statements)
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(do next)):
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\n ::continue::"
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(do next %var)):
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua::append "\n "
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append (what (===next %var ===) compiles to)
|
|
|
|
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\nend --numeric for-loop"
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(stop %var)):
|
2018-09-28 18:34:40 -07:00
|
|
|
%inner_lua = %lua
|
|
|
|
%lua = (Lua "do -- scope for stopping for-loop\n ")
|
|
|
|
%lua::append %inner_lua
|
|
|
|
%lua::append "\n "
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append (what (===stop %var ===) compiles to)
|
2018-09-28 18:34:40 -07:00
|
|
|
%lua::append "\nend -- end of scope for stopping for-loop"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-06-18 15:44:29 -07:00
|
|
|
return %lua
|
2018-01-23 19:22:20 -08:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
(for %var in %start to %stop %body) parses as (..)
|
2018-07-17 23:08:13 -07:00
|
|
|
for %var in %start to %stop via 1 %body
|
2018-01-08 18:53:57 -08:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
2018-07-22 15:01:05 -07:00
|
|
|
%a = [10, 20, 30, 40, 50]
|
2018-07-22 13:59:08 -07:00
|
|
|
%b = []
|
2018-08-29 15:59:30 -07:00
|
|
|
for %x in %a: %b::add %x
|
2018-07-22 13:59:08 -07:00
|
|
|
assume (%a == %b)
|
|
|
|
%b = []
|
|
|
|
for %x in %a:
|
|
|
|
if (%x == 10): do next %x
|
|
|
|
if (%x == 50): stop %x
|
2018-08-29 15:59:30 -07:00
|
|
|
%b::add %x
|
2018-07-22 15:01:05 -07:00
|
|
|
|
|
|
|
assume (%b == [20, 30, 40])
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-01-25 17:34:49 -08:00
|
|
|
# For-each loop (lua's "ipairs()")
|
2018-10-30 23:42:04 -07:00
|
|
|
(for %var in %iterable %body) compiles to:
|
2018-09-06 12:46:39 -07:00
|
|
|
define mangler
|
2018-09-21 00:30:28 -07:00
|
|
|
# This uses Lua's approach of only allowing loop-scoped variables in a loop
|
2018-07-18 01:27:56 -07:00
|
|
|
%lua = (..)
|
2018-09-28 22:15:06 -07:00
|
|
|
Lua "for \(mangle "i"),\(%var as lua identifier) in ipairs(\(%iterable as lua expr)) do\n "
|
|
|
|
%lua::append (%body as lua statements)
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(do next)):
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\n ::continue::"
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(do next %var)):
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua::append "\n "
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append (what (===next %var ===) compiles to)
|
|
|
|
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\nend --foreach-loop"
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(stop %var)):
|
2018-09-28 18:34:40 -07:00
|
|
|
%inner_lua = %lua
|
|
|
|
%lua = (Lua "do -- scope for stopping for-loop\n ")
|
|
|
|
%lua::append %inner_lua
|
|
|
|
%lua::append "\n "
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append (what (===stop %var ===) compiles to)
|
2018-09-28 18:34:40 -07:00
|
|
|
%lua::append "\nend -- end of scope for stopping for-loop"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-06-18 15:44:29 -07:00
|
|
|
return %lua
|
2018-01-25 17:34:49 -08:00
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
# TODO: reduce code duplication
|
2018-10-30 23:42:04 -07:00
|
|
|
(for %var in %iterable at %i %body) compiles to:
|
2018-09-21 00:30:28 -07:00
|
|
|
# This uses Lua's approach of only allowing loop-scoped variables in a loop
|
|
|
|
%lua = (..)
|
2018-09-28 22:15:06 -07:00
|
|
|
Lua "for \(%i as lua identifier),\(%var as lua identifier) in ipairs(\(%iterable as lua expr)) do\n "
|
|
|
|
%lua::append (%body as lua statements)
|
2018-09-21 00:30:28 -07:00
|
|
|
if (%body has subtree \(do next)):
|
|
|
|
%lua::append "\n ::continue::"
|
|
|
|
if (%body has subtree \(do next %var)):
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua::append "\n "
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append (what (===next %var ===) compiles to)
|
|
|
|
|
2018-09-21 00:30:28 -07:00
|
|
|
%lua::append "\nend --foreach-loop"
|
|
|
|
if (%body has subtree \(stop %var)):
|
2018-09-28 18:34:40 -07:00
|
|
|
%inner_lua = %lua
|
|
|
|
%lua = (Lua "do -- scope for stopping for-loop\n ")
|
|
|
|
%lua::append %inner_lua
|
|
|
|
%lua::append "\n "
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append (what (===stop %var ===) compiles to)
|
2018-09-28 18:34:40 -07:00
|
|
|
%lua::append "\nend -- end of scope for stopping for-loop"
|
2018-09-21 00:30:28 -07:00
|
|
|
|
|
|
|
return %lua
|
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
%d = {a:10, b:20, c:30, d:40, e:50}
|
|
|
|
%result = []
|
|
|
|
for %k = %v in %d:
|
|
|
|
if (%k == "a"): do next %k
|
|
|
|
if (%v == 20): do next %v
|
2018-08-29 15:59:30 -07:00
|
|
|
%result::add "\%k = \%v"
|
2018-07-22 15:01:05 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
assume ((%result sorted) == ["c = 30", "d = 40", "e = 50"])
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-01-03 00:52:01 -08:00
|
|
|
# Dict iteration (lua's "pairs()")
|
2018-10-30 23:42:04 -07:00
|
|
|
[..]
|
2018-07-20 20:27:15 -07:00
|
|
|
for %key = %value in %iterable %body, for %key %value in %iterable %body
|
2018-10-30 23:42:04 -07:00
|
|
|
..all compile to:
|
2018-06-18 15:44:29 -07:00
|
|
|
# This uses Lua's approach of only allowing loop-scoped variables in a loop
|
2018-07-20 20:27:15 -07:00
|
|
|
unless (%key.type is "Var"):
|
2018-09-28 22:15:06 -07:00
|
|
|
compile error at %key "Expected a variable here, not a \(%key.type)"
|
2018-07-20 20:27:15 -07:00
|
|
|
unless (%value.type is "Var"):
|
2018-09-28 22:15:06 -07:00
|
|
|
compile error at %value "Expected a variable here, not a \(%value.type)"
|
2018-07-18 01:27:56 -07:00
|
|
|
%lua = (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
|
|
|
..for \(%key as lua identifier),\(%value as lua identifier) in pairs(\(..)
|
2018-07-20 20:27:15 -07:00
|
|
|
%iterable as lua expr
|
2018-09-28 22:15:06 -07:00
|
|
|
..) do"
|
2018-10-30 23:42:04 -07:00
|
|
|
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua::append "\n "
|
|
|
|
%lua::append (%body as lua statements)
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(do next)):
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\n ::continue::"
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(do next %key)):
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua::append "\n "
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append (what (===next %key ===) compiles to)
|
|
|
|
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(do next %value)):
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua::append "\n "
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append (what (===next %value ===) compiles to)
|
|
|
|
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\nend --foreach-loop"
|
2018-07-18 01:27:56 -07:00
|
|
|
%stop_labels = (Lua "")
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(stop %key)):
|
2018-09-28 22:15:06 -07:00
|
|
|
%stop_labels::append "\n"
|
2018-10-30 23:42:04 -07:00
|
|
|
%stop_labels::append (what (===stop %key ===) compiles to)
|
|
|
|
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(stop %value)):
|
2018-09-28 22:15:06 -07:00
|
|
|
%stop_labels::append "\n"
|
2018-10-30 23:42:04 -07:00
|
|
|
%stop_labels::append (what (===stop %value ===) compiles to)
|
|
|
|
|
2018-08-30 14:16:09 -07:00
|
|
|
if ((size of "\%stop_labels") > 0):
|
2018-09-28 18:34:40 -07:00
|
|
|
%inner_lua = %lua
|
|
|
|
%lua = (Lua "do -- scope for stopping for % = % loop\n ")
|
|
|
|
%lua::append %inner_lua
|
|
|
|
%lua::append %stop_labels
|
|
|
|
%lua::append "\nend"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-06-18 15:44:29 -07:00
|
|
|
return %lua
|
2017-09-28 17:49:15 -07:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
2018-11-02 14:38:24 -07:00
|
|
|
when:
|
2018-07-22 15:01:05 -07:00
|
|
|
(1 == 2) (100 < 0):
|
|
|
|
barf "bad conditional"
|
|
|
|
(1 == 0) (1 == 1) %not_a_variable.x: do nothing
|
|
|
|
(1 == 1):
|
|
|
|
barf "bad conditional"
|
|
|
|
(1 == 2):
|
|
|
|
barf "bad conditional"
|
|
|
|
else:
|
|
|
|
barf "bad conditional"
|
2018-07-22 13:59:08 -07:00
|
|
|
|
2018-07-18 17:55:29 -07:00
|
|
|
# Multi-branch conditional (if..elseif..else)
|
2018-11-02 14:38:24 -07:00
|
|
|
(when %body) compiles to:
|
2018-07-18 01:27:56 -07:00
|
|
|
%code = (Lua "")
|
2018-07-18 17:55:29 -07:00
|
|
|
%clause = "if"
|
|
|
|
%else_allowed = (yes)
|
2018-07-20 20:27:15 -07:00
|
|
|
unless (%body.type is "Block"):
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %body "'if' expected a Block, but got a \(%body.type)."
|
|
|
|
..hint "Perhaps you forgot to put a ':' after 'if'?"
|
2018-10-30 23:42:04 -07:00
|
|
|
|
2018-07-18 17:55:29 -07:00
|
|
|
for %line in %body:
|
|
|
|
unless (..)
|
2018-08-30 14:16:09 -07:00
|
|
|
((%line.type is "Action") and ((size of %line) >= 2)) and (..)
|
|
|
|
%line.(size of %line) is "Block" syntax tree
|
2018-07-18 17:55:29 -07:00
|
|
|
..:
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %line "Invalid line for the body of an 'if' block."
|
|
|
|
..hint "Each line should contain one or more conditional expressions \
|
|
|
|
..followed by a block, or "else" followed by a block."
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-08-30 14:16:09 -07:00
|
|
|
%action = %line.(size of %line)
|
|
|
|
if ((%line.1 is "else") and ((size of %line) == 2)):
|
2018-07-20 20:27:15 -07:00
|
|
|
unless %else_allowed:
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %line "You can't have two 'else' blocks."
|
|
|
|
..hint "Merge all of the 'else' blocks together."
|
2018-10-30 23:42:04 -07:00
|
|
|
|
2018-08-30 14:16:09 -07:00
|
|
|
unless ((size of "\%code") > 0):
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %line "\
|
|
|
|
..You can't have an 'else' block without a preceeding condition"
|
|
|
|
..hint "If you want the code in this block to always execute, you don't \
|
|
|
|
..need a conditional block around it. Otherwise, make sure the 'else' \
|
|
|
|
..block comes last."
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-28 18:34:40 -07:00
|
|
|
%code::append "\nelse\n "
|
|
|
|
%code::append (%action as lua statements)
|
2018-07-18 17:55:29 -07:00
|
|
|
%else_allowed = (no)
|
|
|
|
..else:
|
2018-09-28 22:15:06 -07:00
|
|
|
%code::append %clause
|
|
|
|
%code::append " "
|
2018-08-30 14:16:09 -07:00
|
|
|
for %i in 1 to ((size of %line) - 1):
|
2018-07-20 20:27:15 -07:00
|
|
|
if (%i > 1):
|
2018-08-29 15:09:35 -07:00
|
|
|
%code::append " or "
|
|
|
|
%code::append (%line.%i as lua expr)
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-09-28 18:34:40 -07:00
|
|
|
%code::append " then\n "
|
|
|
|
%code::append (%action as lua statements)
|
2018-07-18 17:55:29 -07:00
|
|
|
%clause = "\nelseif"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-08-30 14:16:09 -07:00
|
|
|
if ((size of "\%code") == 0):
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %body "'if' block has an empty body."
|
|
|
|
..hint "This means nothing would happen, so the 'if' block should be deleted."
|
2018-08-29 15:09:35 -07:00
|
|
|
%code::append "\nend --when"
|
2018-06-18 15:44:29 -07:00
|
|
|
return %code
|
2017-12-04 17:35:47 -08:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
if 5 is:
|
2018-07-22 15:01:05 -07:00
|
|
|
1 2 3:
|
|
|
|
barf "bad switch statement"
|
2018-07-22 13:59:08 -07:00
|
|
|
4 5: do nothing
|
2018-07-22 15:01:05 -07:00
|
|
|
5 6:
|
|
|
|
barf "bad switch statement"
|
|
|
|
else:
|
|
|
|
barf "bad switch statement"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-06-18 15:44:29 -07:00
|
|
|
# Switch statement
|
2018-10-30 23:42:04 -07:00
|
|
|
[if %branch_value is %body, when %branch_value is %body] all compile to:
|
2018-07-18 01:27:56 -07:00
|
|
|
%code = (Lua "")
|
2018-07-18 17:55:29 -07:00
|
|
|
%clause = "if"
|
|
|
|
%else_allowed = (yes)
|
2018-09-06 12:46:39 -07:00
|
|
|
define mangler
|
2018-07-20 20:27:15 -07:00
|
|
|
unless (%body.type is "Block"):
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %body "'if' expected a Block, but got a \(%body.type)"
|
|
|
|
..hint "Perhaps you forgot to put a ':' after the 'is'?"
|
2018-07-18 17:55:29 -07:00
|
|
|
for %line in %body:
|
|
|
|
unless (..)
|
2018-08-30 14:16:09 -07:00
|
|
|
((%line.type is "Action") and ((size of %line) >= 2)) and (..)
|
|
|
|
%line.(size of %line) is "Block" syntax tree
|
2018-07-18 17:55:29 -07:00
|
|
|
..:
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %line "Invalid line for 'if' block."
|
|
|
|
..hint "Each line should contain expressions \
|
|
|
|
..followed by a block, or "else" followed by a block"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-08-30 14:16:09 -07:00
|
|
|
%action = %line.(size of %line)
|
|
|
|
if ((%line.1 is "else") and ((size of %line) == 2)):
|
2018-07-20 20:27:15 -07:00
|
|
|
unless %else_allowed:
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %line "You can't have two 'else' blocks."
|
|
|
|
..hint "Merge all of the 'else' blocks together."
|
2018-08-30 14:16:09 -07:00
|
|
|
unless ((size of "\%code") > 0):
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %line "\
|
|
|
|
..You can't have an 'else' block without a preceeding condition"
|
|
|
|
..hint "If you want the code in this block to always execute, you don't \
|
|
|
|
..need a conditional block around it. Otherwise, make sure the 'else' \
|
|
|
|
..block comes last."
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-09-28 18:34:40 -07:00
|
|
|
%code::append "\nelse\n "
|
|
|
|
%code::append (%action as lua statements)
|
2018-07-18 17:55:29 -07:00
|
|
|
%else_allowed = (no)
|
|
|
|
..else:
|
2018-09-28 22:15:06 -07:00
|
|
|
%code::append %clause
|
|
|
|
%code::append " "
|
2018-08-30 14:16:09 -07:00
|
|
|
for %i in 1 to ((size of %line) - 1):
|
2018-07-20 20:27:15 -07:00
|
|
|
if (%i > 1):
|
2018-08-29 15:09:35 -07:00
|
|
|
%code::append " or "
|
2018-09-28 22:15:06 -07:00
|
|
|
%code::append "\(mangle "branch value") == "
|
|
|
|
%code::append (%line.%i as lua expr)
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-09-28 18:34:40 -07:00
|
|
|
%code::append " then\n "
|
|
|
|
%code::append (%action as lua statements)
|
2018-07-18 17:55:29 -07:00
|
|
|
%clause = "\nelseif"
|
2018-06-18 15:44:29 -07:00
|
|
|
|
2018-08-30 14:16:09 -07:00
|
|
|
if ((size of "\%code") == 0):
|
2018-09-16 17:38:19 -07:00
|
|
|
compile error at %body "'if' block has an empty body."
|
|
|
|
..hint "This means nothing would happen, so the 'if' block should be deleted."
|
2018-08-29 15:09:35 -07:00
|
|
|
%code::append "\nend --when"
|
2018-09-28 18:34:40 -07:00
|
|
|
%lua = (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
2018-09-28 18:34:40 -07:00
|
|
|
..do --if % is...
|
2018-09-28 22:15:06 -07:00
|
|
|
local \(mangle "branch value") = "
|
|
|
|
%lua::append (%branch_value as lua expr)
|
2018-09-28 18:34:40 -07:00
|
|
|
%lua::append "\n "
|
|
|
|
%lua::append %code
|
|
|
|
%lua::append "\nend --if % is..."
|
|
|
|
return %lua
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-06-18 15:44:29 -07:00
|
|
|
# Do/finally
|
2018-10-30 23:42:04 -07:00
|
|
|
(do %action) compiles to:
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua = (Lua "do\n ")
|
|
|
|
%lua::append (%action as lua statements)
|
|
|
|
%lua::append "\nend -- do"
|
|
|
|
return %lua
|
2018-07-18 01:27:56 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
%d = {}
|
|
|
|
try:
|
|
|
|
do:
|
|
|
|
%d.x = "bad"
|
|
|
|
barf
|
2018-07-22 15:01:05 -07:00
|
|
|
..then always: %d.x = "good"
|
2018-07-22 13:59:08 -07:00
|
|
|
assume (%d.x == "good")
|
2018-10-30 23:42:04 -07:00
|
|
|
(do %action then always %final_action) compiles to:
|
2018-09-06 12:46:39 -07:00
|
|
|
define mangler
|
2018-09-28 22:15:06 -07:00
|
|
|
%lua = (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
|
|
|
..do
|
2018-09-06 12:46:39 -07:00
|
|
|
local \(mangle "fell_through") = false
|
2018-09-28 22:15:06 -07:00
|
|
|
local \(mangle "ok"), \(mangle "ret") = pcall(function()"
|
|
|
|
%lua::append "\n "
|
|
|
|
%lua::append (%action as lua statements)
|
|
|
|
%lua::append "\
|
|
|
|
.. \(mangle "fell_through") = true
|
|
|
|
end)"
|
|
|
|
%lua::append "\n "
|
|
|
|
%lua::append (%final_action as lua statements)
|
|
|
|
%lua::append "\
|
|
|
|
.. if not \(mangle "ok") then error(ret, 0) end
|
|
|
|
if not \(mangle "fell_through") then return ret end
|
|
|
|
end"
|
2018-09-28 22:16:10 -07:00
|
|
|
return %lua
|
2017-12-04 17:35:47 -08:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
2018-07-22 15:01:05 -07:00
|
|
|
assume ((result of (: return 99)) == 99)
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-05-10 22:47:03 -07:00
|
|
|
# Inline thunk:
|
2018-10-30 23:42:04 -07:00
|
|
|
(result of %body) compiles to (Lua value "\(what ([] -> %body) compiles to)()")
|
2018-07-30 15:05:41 -07:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
%t = [1, [2, [[3], 4], 5, [[[6]]]]]
|
|
|
|
%flat = []
|
|
|
|
for % in recursive %t:
|
2018-09-26 13:05:28 -07:00
|
|
|
if ((lua type of %) is "table"):
|
2018-07-22 13:59:08 -07:00
|
|
|
for %2 in %: recurse % on %2
|
2018-08-29 15:59:30 -07:00
|
|
|
..else: %flat::add %
|
2018-07-22 15:01:05 -07:00
|
|
|
|
2018-09-26 13:05:28 -07:00
|
|
|
assume (sorted %flat) == [1, 2, 3, 4, 5, 6]
|
2018-07-22 13:59:08 -07:00
|
|
|
|
2018-06-21 19:12:59 -07:00
|
|
|
# Recurion control flow
|
2018-10-30 23:42:04 -07:00
|
|
|
(for %var in recursive %structure %body) compiles to:
|
2018-07-17 23:08:13 -07:00
|
|
|
with local compile actions:
|
2018-09-06 12:46:39 -07:00
|
|
|
define mangler
|
2018-10-30 23:42:04 -07:00
|
|
|
(recurse %v on %x) compiles to (..)
|
2018-09-06 12:46:39 -07:00
|
|
|
Lua "table.insert(\(mangle "stack \(%v.1)"), \(%x as lua expr))"
|
2018-07-22 13:59:08 -07:00
|
|
|
%lua = (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
|
|
|
..do
|
2018-11-06 15:13:55 -08:00
|
|
|
local \(mangle "stack \(%var.1)") = List{\(%structure as lua expr)}
|
2018-09-06 12:46:39 -07:00
|
|
|
while #\(mangle "stack \(%var.1)") > 0 do
|
2018-09-28 22:15:06 -07:00
|
|
|
\(%var as lua expr) = table.remove(\(mangle "stack \(%var.1)"), 1)"
|
|
|
|
%lua::append "\n "
|
|
|
|
%lua::append (%body as lua statements)
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%body has subtree \(do next)):
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\n ::continue::"
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(do next %var)):
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append "\n \(what (===next %var ===) compiles to)"
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\n end -- Recursive loop"
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%body has subtree \(stop %var)):
|
2018-10-30 23:42:04 -07:00
|
|
|
%lua::append "\n \(what (===stop %var ===) compiles to)"
|
2018-08-29 15:09:35 -07:00
|
|
|
%lua::append "\nend -- Recursive scope"
|
2018-07-22 13:59:08 -07:00
|
|
|
return %lua
|