Searched refs:decode_error (Results 1 – 1 of 1) sorted by relevance
/packages/services/Car/tools/telemetry/lua-interpreter/ |
D | json.lua | 153 local function decode_error(str, idx, msg) function 205 decode_error(str, j, "control character in string") 214 or decode_error(str, j - 1, "invalid unicode escape in string") 219 decode_error(str, j - 1, "invalid escape char '" .. c .. "' in string") 233 decode_error(str, i, "expected closing quote for string") 242 decode_error(str, i, "invalid number '" .. s .. "'") 252 decode_error(str, i, "invalid literal '" .. word .. "'") 279 if chr ~= "," then decode_error(str, i, "expected ']' or ','") end 298 decode_error(str, i, "expected string for key") 304 decode_error(str, i, "expected ':' after key") [all …]
|