| 110 | } |
| 111 | |
| 112 | void ckpt_json_is_array(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 113 | { |
| 114 | ReturnValue->Val->Integer = tree(ScriptArgs(Parser, Param, NumArgs, "json_is_array"), 0)->is_array() ? 1 : 0; |
| 115 | } |
| 116 | |
| 117 | void ckpt_json_is_object(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 118 | { |
nothing calls this directly
no test coverage detected