You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c = coroutine.create(function() print(1) coroutine.yield() print(2) end)
coroutine.resume(c)
coroutine.resume(c)
print("hola");
got
Error in host call: vm is undefined
shine.Coroutine._remove@http://moonshinejs.org/js/moonshine/moonshine.js:1637:2
call_internal@http://moonshinejs.org/js/moonshine/moonshine.js:2890:15
shine.Closure.prototype._executeInstruction@http://moonshinejs.org/js/moonshine/moonshine.js:1246:9
run/<@http://moonshinejs.org/editor/editor.js:262:5
success@http://moonshinejs.org/editor/editor.js:313:5
anonymous/xhr.onload@http://moonshinejs.org/editor/editor.js line 304 > Function:33:19
@/app/lua/40933-1476726075985.lua [(compiled code):3]
A error sample:
c = coroutine.create(function() print(1) coroutine.yield() print(2) end)
coroutine.resume(c)
coroutine.resume(c)
The text was updated successfully, but these errors were encountered: