(L *LState)
| 47 | } |
| 48 | |
| 49 | func OpenOs(L *LState) int { |
| 50 | osmod := L.RegisterModule(OsLibName, osFuncs) |
| 51 | L.Push(osmod) |
| 52 | return 1 |
| 53 | } |
| 54 | |
| 55 | var osFuncs = map[string]LGFunction{ |
| 56 | "clock": osClock, |
nothing calls this directly
no test coverage detected
searching dependent graphs…