| 432 | } |
| 433 | |
| 434 | RET parse_selection(PARAMS) { |
| 435 | INIT(selection); |
| 436 | obj->field = parse_field(ARGS); OR |
| 437 | obj->frag_spread = parse_fragment_spread(ARGS); OR |
| 438 | obj->inline_frag = parse_inline_fragment(ARGS); |
| 439 | MSG("expected: field, fragment spread, or inline fragment"); |
| 440 | EXIT; |
| 441 | } |
| 442 | |
| 443 | RET parse_selection_set(PARAMS) { |
| 444 | INIT(selection_set); |
no test coverage detected