2018-07-20 20:27:15 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.5.4.3
|
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-07-22 13:59:08 -07:00
|
|
|
test:
|
|
|
|
%nums = []
|
|
|
|
%co = (..)
|
|
|
|
coroutine:
|
|
|
|
-> 4
|
|
|
|
-> 5
|
|
|
|
repeat 3 times: -> 6
|
|
|
|
|
|
|
|
for % in coroutine %co: add % to %nums
|
|
|
|
assume (%nums == [4, 5, 6, 6, 6]) or barf "Coroutine iteration failed"
|
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
compile [coroutine %body, generator %body] to (..)
|
2018-07-20 20:27:15 -07:00
|
|
|
Lua value ".."
|
|
|
|
(function()
|
|
|
|
\(%body as lua statements)
|
|
|
|
end)
|
2018-06-14 23:25:05 -07:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
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-06-14 23:25:05 -07:00
|
|
|
Lua ".."
|
|
|
|
for junk,\(% as lua expr) in coroutine.wrap(\(%co as lua expr)) do
|
|
|
|
\(%body as lua statements)
|
2018-07-22 13:59:08 -07:00
|
|
|
end
|