summaryrefslogtreecommitdiff
path: root/testes/coroutine.lua
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-01-26 16:53:51 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-01-26 16:53:51 -0300
commit58aa09a0b91cf81779d6710d7f9d855bb9d3712f (patch)
tree56adab5aab1307791b7e485677a41203d7369a6c /testes/coroutine.lua
parent1f81baffadad9d955b030a1a29b9b06042a66552 (diff)
downloadlua-github-58aa09a0b91cf81779d6710d7f9d855bb9d3712f.tar.gz
Small improvements in hooks
- 'L->top' is set once in 'luaD_hook', instead of being set in 'luaD_hookcall' and 'rethook'; - resume discard arguments when returning after an yield inside a hook (arguments may interfere with the coroutine stack); - yield inside a hook asserts it has no arguments.
Diffstat (limited to 'testes/coroutine.lua')
-rw-r--r--testes/coroutine.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/testes/coroutine.lua b/testes/coroutine.lua
index fbeabd07..b36b76ea 100644
--- a/testes/coroutine.lua
+++ b/testes/coroutine.lua
@@ -498,6 +498,28 @@ else
assert(B // A == 7) -- fact(7) // fact(6)
+ do -- hooks vs. multiple values
+ local done
+ local function test (n)
+ done = false
+ return coroutine.wrap(function ()
+ local a = {}
+ for i = 1, n do a[i] = i end
+ -- 'pushint' just to perturb the stack
+ T.sethook("pushint 10; yield 0", "", 1) -- yield at each op.
+ local a1 = {table.unpack(a)} -- must keep top between ops.
+ assert(#a1 == n)
+ for i = 1, n do assert(a[i] == i) end
+ done = true
+ end)
+ end
+ -- arguments to the coroutine are just to perturb its stack
+ local co = test(0); while not done do co(30) end
+ co = test(1); while not done do co(20, 10) end
+ co = test(3); while not done do co() end
+ co = test(100); while not done do co() end
+ end
+
local line = debug.getinfo(1, "l").currentline + 2 -- get line number
local function foo ()
local x = 10 --<< this line is 'line'