nomsu/core/coroutines.nom

41 lines
993 B
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V6.14
#
This file defines the code that creates and manipulates coroutines
use "core/metaprogramming.nom"
use "core/operators.nom"
use "core/control_flow.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test:
2018-12-30 19:04:34 -08:00
$co =
->:
yield 4
yield 5
2018-11-19 17:37:37 -08:00
repeat 3 times:
yield 6
2018-12-14 20:21:03 -08:00
$nums = []
2018-12-30 19:04:34 -08:00
for $ in coroutine $co:
$nums, add $
unless ($nums == [4, 5, 6, 6, 6]):
fail "Coroutine iteration failed"
2018-12-30 19:04:34 -08:00
$d = {.x = 0}
$co2 =
coroutine:
2018-12-14 20:21:03 -08:00
$d.x += 1
yield 1
2018-12-14 20:21:03 -08:00
$d.x += 1
yield
2018-12-14 20:21:03 -08:00
$d.x += 1
repeat while ((coroutine status of $co2) != "dead"): resume $co2
assume $d.x == 3
(coroutine $body) parses as (coroutine from (-> $body))
2018-12-30 19:04:34 -08:00
(for $ in coroutine $co $body) compiles to ("
2018-12-14 20:21:03 -08:00
for \($ as lua expr) in coroutine_wrap(\($co as lua expr)) do
\($body as lua)
2018-12-30 19:04:34 -08:00
end
")