| 115 | } |
| 116 | |
| 117 | void ckpt_json_is_object(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 118 | { |
| 119 | ReturnValue->Val->Integer = tree(ScriptArgs(Parser, Param, NumArgs, "json_is_object"), 0)->is_object() ? 1 : 0; |
| 120 | } |
| 121 | |
| 122 | void ckpt_json_get_int(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 123 | { |
nothing calls this directly
no test coverage detected