(l *lua.LState)
| 196 | } |
| 197 | |
| 198 | func luaContextGetToken(l *lua.LState) int { |
| 199 | ctx := luaCheckContext(l) |
| 200 | l.Push(lua.LString(getToken(ctx))) |
| 201 | return 1 |
| 202 | } |
| 203 | |
| 204 | func luaContextGetUrl(l *lua.LState) int { |
| 205 | ctx := luaCheckContext(l) |
nothing calls this directly
no test coverage detected