| 486 | } |
| 487 | |
| 488 | RET parse_executable_document(PARAMS) { |
| 489 | INIT(executable_document); |
| 490 | obj->first_def = parse_executable_definition(ARGS); REQ |
| 491 | struct graphql_executable_definition *p = obj->first_def; |
| 492 | do { |
| 493 | p->next_def = parse_executable_definition(ARGS); |
| 494 | p = p->next_def; |
| 495 | } WHILE_OPT; |
| 496 | EXIT; |
| 497 | } |
| 498 | |
| 499 | RET parse_definition(PARAMS) { |
| 500 | INIT(definition); |
no test coverage detected