in src/ujdecode.c [309:319]
static JSOBJ newUnsignedLong(void *context, JSUINT64 value)
{
struct DecoderState *ds = context;
UnsignedLongLongValue *llv =
(UnsignedLongLongValue *) alloc(ds, sizeof(UnsignedLongLongValue));
if (llv) {
llv->item.type = UJT_UnsignedLongLong;
llv->value = (long long unsigned) value;
}
return (JSOBJ) llv;
}