Recompile

This commit is contained in:
Bruce Hill 2018-10-03 16:26:50 -07:00
parent 2f68357cb6
commit be1df7ccd3

View File

@ -187,6 +187,6 @@ for _index_0 = 1, #_list_0 do
local lua_id = string2.as_lua_id(test)
assert(is_lua_id(lua_id), "failed to convert '" .. tostring(test) .. "' to a valid Lua identifier (got '" .. tostring(lua_id) .. "')")
local roundtrip = string2.from_lua_id(lua_id)
assert(roundtrip == test, "Failed lua_id roundtrip: '" .. tostring(test) .. "' -> " .. tostring(lua_id) .. " -> " .. tostring(roundtrip))
assert(roundtrip == test, "Failed lua_id roundtrip: '" .. tostring(test) .. "' -> '" .. tostring(lua_id) .. "' -> '" .. tostring(roundtrip) .. "'")
end
return string2