2018-11-11 15:50:46 -08:00
|
|
|
#!/usr/bin/env nomsu -V4.10.12.7
|
2018-06-14 23:25:05 -07:00
|
|
|
#
|
|
|
|
This file defines the code that creates and manipulates coroutines
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-06-14 23:25:05 -07:00
|
|
|
use "core/metaprogramming.nom"
|
2018-11-17 14:38:05 -08:00
|
|
|
use "core/operators.nom"
|
|
|
|
use "core/control_flow.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:
|
|
|
|
%co = (..)
|
2018-11-17 14:38:05 -08:00
|
|
|
->:
|
|
|
|
yield 4
|
|
|
|
yield 5
|
|
|
|
repeat 3 times: yield 6
|
2018-07-22 15:01:05 -07:00
|
|
|
|
2018-11-17 14:38:05 -08:00
|
|
|
%nums = []
|
2018-11-11 15:50:46 -08: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-11 15:50:46 -08:00
|
|
|
|
2018-06-14 23:25:05 -07:00
|
|
|
|
2018-11-17 14:38:05 -08:00
|
|
|
%d = {x:0}
|
|
|
|
%co2 = (..)
|
|
|
|
coroutine:
|
|
|
|
%d.x += 1
|
|
|
|
yield 1
|
|
|
|
%d.x += 1
|
|
|
|
yield
|
|
|
|
%d.x += 1
|
|
|
|
repeat while ((coroutine status of %co2) != "dead"):
|
|
|
|
resume %co2
|
|
|
|
assume %d.x == 3
|
|
|
|
|
|
|
|
(coroutine %body) parses as (coroutine from (-> %body))
|
|
|
|
|
2018-11-09 14:36:15 -08:00
|
|
|
(for % in coroutine %co %body) compiles to "\
|
2018-11-17 14:38:05 -08:00
|
|
|
..for \(% 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"
|