Configures how to decode arrays */
| 363 | |
| 364 | /* Configures how to decode arrays */ |
| 365 | static int json_cfg_decode_array_with_array_mt(lua_State *l) |
| 366 | { |
| 367 | json_config_t *cfg = json_arg_init(l, 1); |
| 368 | |
| 369 | json_enum_option(l, 1, &cfg->decode_array_with_array_mt, NULL, 1); |
| 370 | |
| 371 | return 1; |
| 372 | } |
| 373 | |
| 374 | /* Configures JSON encoding buffer persistence */ |
| 375 | static int json_cfg_encode_keep_buffer(lua_State *l) |
nothing calls this directly
no test coverage detected