
better path going forward to handling upgrades. Old syntax files will stick around for compatibility purposes. Old syntax can be parsed into valid syntax trees via the old syntax (.peg) files, and then old syntax trees should be valid and can be upgraded via the normal code path. This change has lots of improvements to Nomsu codegen too.
19 lines
571 B
Plaintext
19 lines
571 B
Plaintext
#!/usr/bin/env nomsu -V1
|
|
#
|
|
This file defines the code that creates and manipulates coroutines
|
|
|
|
use "core/metaprogramming.nom"
|
|
|
|
compile [coroutine %body, generator %body] to
|
|
Lua value ".."
|
|
(function()
|
|
\(%body as lua statements)
|
|
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
|
|
Lua ".."
|
|
for junk,\(% as lua expr) in coroutine.wrap(\(%co as lua expr)) do
|
|
\(%body as lua statements)
|
|
end
|