aboutsummaryrefslogtreecommitdiff
path: root/unit_tests/scripts/coro/yielding_function.lua (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Split coro tests in several scriptsBenoit Germain2025-07-041-108/+0
|
* Fix more issues related to suspended coroutines and join/indexing operationsBenoit Germain2025-07-031-21/+13
| | | | | * indexing and joining a suspended lane closes the coroutine, causing the termination of the lane * properly close coroutine to-be-closed variables on interruption
* Clarified interactions between join() and coroutinesBenoit Germain2025-07-011-18/+27
|
* Preparation for lane:close() and correct to-be-closed variablesBenoit Germain2025-06-261-0/+107
* lane:join() can no longer be used to read yielded values * same with lane indexing * stub for lane:close(), similar to coroutine.close() (not implemented yet) * preparing tests for to-be-closed variables in yielded coroutine lanes * yielded lanes unlock and terminate properly at Lanes shutdown