Mercurial > prosody-hg
view util/xpcall.lua @ 13171:e2c3582ab9fa
util.jsonpointer: Silence Teal warning
It seems to think 'table' never has array items, but we don't know that.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 30 Jun 2023 15:02:26 +0200 |
| parents | d10957394a3c |
| children |
line wrap: on
line source
local xpcall = xpcall; if select(2, xpcall(function (x) return x end, function () end, "test")) ~= "test" then xpcall = require"prosody.util.compat".xpcall; end return { xpcall = xpcall; };
