nomsu/core/coroutines.nom

30 lines
835 B
Plaintext
Raw Normal View History

2018-09-14 19:17:09 -07:00
#!/usr/bin/env nomsu -V4.8.8.6
#
This file defines the code that creates and manipulates coroutines
use "core/metaprogramming.nom"
test:
%nums = []
%co = (..)
coroutine:
-> 4
-> 5
repeat 3 times: -> 6
for % in coroutine %co: %nums::add %
assume (%nums == [4, 5, 6, 6, 6]) or barf "Coroutine iteration failed"
compile [coroutine %body, generator %body] to (..)
2018-09-14 19:17:09 -07:00
Lua value "\
..(function()
\(%body as lua statements)
2018-09-14 19:17:09 -07:00
end)"
compile [->] to (Lua value "coroutine.yield(true)")
compile [-> %] to (Lua value "coroutine.yield(true, \(% as lua expr))")
compile [for % in coroutine %co %body] to (..)
2018-09-14 19:17:09 -07:00
Lua "\
..for junk,\(% as lua expr) in coroutine.wrap(\(%co as lua expr)) do
\(%body as lua statements)
2018-09-14 19:17:09 -07:00
end"