代码拉取完成,页面将自动刷新
package luar
import (
"reflect"
"github.com/yuin/gopher-lua"
)
func chanIndex(L *lua.LState) int {
_, mt := check(L, 1)
key := L.CheckString(2)
if fn := mt.method(key); fn != nil {
L.Push(fn)
return 1
}
return 0
}
func chanLen(L *lua.LState) int {
ref, _ := check(L, 1)
L.Push(lua.LNumber(ref.Len()))
return 1
}
func chanEq(L *lua.LState) int {
ref1, _ := check(L, 1)
ref2, _ := check(L, 2)
L.Push(lua.LBool(ref1.Pointer() == ref2.Pointer()))
return 1
}
func chanCall(L *lua.LState) int {
ref, _ := check(L, 1)
switch L.GetTop() {
// Receive
case 1:
if ref.Type().ChanDir()&reflect.RecvDir == 0 {
L.ArgError(1, "receive from send-only type "+ref.Type().String())
}
value, ok := ref.Recv()
if ok {
L.Push(New(L, value.Interface()))
L.Push(lua.LTrue)
} else {
L.Push(lua.LNil)
L.Push(lua.LFalse)
}
return 2
// Send
case 2:
if ref.Type().ChanDir()&reflect.SendDir == 0 {
L.ArgError(1, "send to receive-only type "+ref.Type().String())
}
value := L.CheckAny(2)
hint := ref.Type().Elem()
convertedValue, err := lValueToReflect(L, value, hint, nil)
if err != nil {
L.ArgError(2, err.Error())
}
ref.Send(convertedValue)
return 0
default:
L.RaiseError("expecting 1 or 2 arguments, got %d", L.GetTop())
panic("never reaches")
}
}
func chanUnm(L *lua.LState) int {
ref, _ := check(L, 1)
ref.Close()
return 0
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。