2018-10-30 23:42:04 -07:00
|
|
|
#!/usr/bin/env nomsu -V4.8.10
|
2018-06-14 23:25:05 -07:00
|
|
|
#
|
|
|
|
This file defines the code that creates and manipulates coroutines
|
|
|
|
|
|
|
|
use "core/metaprogramming.nom"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
%nums = []
|
|
|
|
%co = (..)
|
|
|
|
coroutine:
|
|
|
|
-> 4
|
|
|
|
-> 5
|
|
|
|
repeat 3 times: -> 6
|
2018-07-22 15:01:05 -07:00
|
|
|
|
2018-08-29 15:59:30 -07:00
|
|
|
for % in coroutine %co: %nums::add %
|
2018-07-22 13:59:08 -07:00
|
|
|
assume (%nums == [4, 5, 6, 6, 6]) or barf "Coroutine iteration failed"
|
2018-10-30 23:42:04 -07:00
|
|
|
[coroutine %body, generator %body] all compile to (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua value "\
|
|
|
|
..(function()
|
2018-07-20 20:27:15 -07:00
|
|
|
\(%body as lua statements)
|
2018-09-14 19:17:09 -07:00
|
|
|
end)"
|
2018-06-14 23:25:05 -07:00
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
(->) compiles to (Lua value "coroutine.yield(true)")
|
|
|
|
(-> %) compiles to (Lua value "coroutine.yield(true, \(% as lua expr))")
|
|
|
|
(for % in coroutine %co %body) compiles to (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
|
|
|
..for junk,\(% as lua expr) in coroutine.wrap(\(%co as lua expr)) do
|
2018-06-14 23:25:05 -07:00
|
|
|
\(%body as lua statements)
|
2018-09-14 19:17:09 -07:00
|
|
|
end"
|