| 167 | } |
| 168 | |
| 169 | void ckpt_json_object_contains(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 170 | { |
| 171 | const ScriptArgs args(Parser, Param, NumArgs, "json_object_contains"); |
| 172 | ReturnValue->Val->Integer = tree(args, 0)->contains(args.str(1)) ? 1 : 0; |
| 173 | } |
| 174 | |
| 175 | void ckpt_json_object_element(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 176 | { |