(L *lua.LState)
| 30 | } |
| 31 | |
| 32 | func OpenOsRuntime(L *lua.LState) int { |
| 33 | osmod := L.RegisterModule(lua.OsLibName, osFuncs) |
| 34 | L.Push(osmod) |
| 35 | return 1 |
| 36 | } |
| 37 | |
| 38 | var osFuncs = map[string]lua.LGFunction{ |
| 39 | "clock": osClock, |
nothing calls this directly
no test coverage detected
searching dependent graphs…