static JSOBJ newFalse()

in src/ujdecode.c [253:259]


static JSOBJ newFalse(void *context)
{
	struct DecoderState *ds = context;
	FalseValue *fv = (FalseValue *) alloc(ds, sizeof(FalseValue *));
	fv->item.type = UJT_False;
	return (JSOBJ) fv;
}