| 413 | } |
| 414 | |
| 415 | RET parse_inline_fragment(PARAMS) { |
| 416 | INIT(inline_fragment); |
| 417 | parse_punct(ARGS, PUNCT_SPREAD); REQ |
| 418 | obj->type_cond = parse_type_condition(ARGS); OPT |
| 419 | obj->directives = parse_directives(ARGS); OPT |
| 420 | obj->sel_set = parse_selection_set(ARGS); REQ |
| 421 | EXIT; |
| 422 | } |
| 423 | |
| 424 | RET parse_field(PARAMS) { |
| 425 | INIT(field); |
no test coverage detected