Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

args in lua functions nil #516

Open
raynorchen opened this issue Dec 19, 2024 · 2 comments
Open

args in lua functions nil #516

raynorchen opened this issue Dec 19, 2024 · 2 comments

Comments

@raynorchen
Copy link

  1. What version of GopherLua are you using? : v1.1.1
  2. What version of Go are you using? : 1.22.3
  3. What operating system and processor architecture are you using? : mac-M1
  4. What did you do? :

test.lua:

root = {}

function root:testfunc(a)
    if a == nil then
        return "nil"
    end
    return a
end

main.go

lua.NewState()
	defer L.Close()

	if err := L.DoFile("test.lua"}

	myTable := L.GetGlobal("root").(*lua.LTable)

	err := L.CallByParam(lua.P{
		Fn:      myTable.RawGet(lua.LString("testfunc")),
		NRet:    1,
		Protect: true,
	}, lua.LString("hello"))

	if err != nil {
		panic(err)
	}
	ret := L.Get(-1)
	L.Pop(1)
	res, ok := ret.(lua.LString)
	if ok {
		fmt.Println(res)
	}
  1. What did you expect to see? :"hello"
  2. What did you see instead? : "nil"
@raynorchen
Copy link
Author

fixed

@tul
Copy link
Contributor

tul commented Jan 10, 2025

This issue looks to be caused by you not passing a self parameter in your CallByParam invocation. I think if you were to do:

err := L.CallByParam(lua.P{
	Fn:      myTable.RawGet(lua.LString("testfunc")),
	NRet:    1,
	Protect: true,
}, myTable, lua.LString("hello"))

It would work as expected.

If you agree, please consider closing the issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants