2018-07-18 01:27:56 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.3.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-17 23:08:13 -07:00
|
|
|
compile [coroutine %body, generator %body] to (..)
|
|
|
|
Lua value "(function()\n \(%body as lua statements)\nend)"
|
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-17 23:08:13 -07:00
|
|
|
end
|