| 88 | } |
| 89 | |
| 90 | static int URL_tostring(lua_State *L) |
| 91 | { |
| 92 | dmMessage::URL* url = (dmMessage::URL*)lua_touserdata(L, 1); |
| 93 | char buffer[512]; |
| 94 | UrlToString(url, buffer, sizeof(buffer)); |
| 95 | lua_pushfstring(L, "%s: [%s]", SCRIPT_TYPE_NAME_URL, buffer); |
| 96 | return 1; |
| 97 | } |
| 98 | |
| 99 | static int URL_concat(lua_State *L) |
| 100 | { |
nothing calls this directly
no test coverage detected