예제 #1
0
파일: lua.go 프로젝트: szll/golua
// lua_getfenv
func (L *State) GetfEnv(index int) { C.lua_getfenv(L.s, C.int(index)) }
예제 #2
0
파일: state.go 프로젝트: halturin/luajit
// Pushes onto the stack the environment table of the value at the given
// index.
func (s *State) Getfenv(index int) {
	C.lua_getfenv(s.l, C.int(index))
}