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-11-09 14:36:15 -08:00
|
|
|
[coroutine %body, generator %body] all compile to "\
|
|
|
|
..(function()
|
2018-11-09 14:48:23 -08:00
|
|
|
\(%body as lua)
|
2018-11-09 14:36:15 -08:00
|
|
|
end)"
|
2018-06-14 23:25:05 -07:00
|
|
|
|
2018-11-09 14:36:15 -08:00
|
|
|
(-> %) compiles to "coroutine.yield(true, \((% as lua expr) if % else "nil"))"
|
|
|
|
(for % in coroutine %co %body) compiles to "\
|
|
|
|
..for _junk,\(% as lua expr) in coroutine.wrap(\(%co as lua expr)) do
|
2018-11-09 14:48:23 -08:00
|
|
|
\(%body as lua)
|
2018-11-09 14:36:15 -08:00
|
|
|
end"
|