| 149 | } |
| 150 | template<value_compare_op op> |
| 151 | static value test_compare_fn(const func_args & args) { |
| 152 | args.ensure_count(2, 2); |
| 153 | return mk_val<value_bool>(value_compare(args.get_pos(0), args.get_pos(1), op)); |
| 154 | } |
| 155 | |
| 156 | static value tojson(const func_args & args) { |
| 157 | args.ensure_count(1, 5); |
nothing calls this directly
no test coverage detected