MCPcopy Create free account
hub / github.com/ElementsProject/lightning / parse_directives

Function parse_directives

ccan/ccan/graphql/graphql.c:359–368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

357}
358
359RET parse_directives(PARAMS) {
360 INIT(directives);
361 obj->first = parse_directive(ARGS); REQ
362 struct graphql_directive *p = obj->first;
363 do {
364 p->next = parse_directive(ARGS);
365 p = p->next;
366 } WHILE_OPT;
367 EXIT;
368}
369
370RET parse_fragment_spread(PARAMS) {
371 INIT(fragment_spread);

Callers 6

parse_fragment_spreadFunction · 0.85
parse_inline_fragmentFunction · 0.85
parse_fieldFunction · 0.85

Calls 1

parse_directiveFunction · 0.85

Tested by

no test coverage detected