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

Function parse_list_value

ccan/ccan/graphql/graphql.c:199–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

197RET parse_value(PARAMS);
198
199RET parse_list_value(PARAMS) {
200 INIT(list_value);
201 parse_punct(ARGS, '['); REQ
202 parse_punct(ARGS, ']');
203 while (*err) {
204 *err = NULL;
205 parse_value(ARGS); MSG("expected: value or ']'"); REQ
206 parse_punct(ARGS, ']');
207 }
208 EXIT;
209}
210
211RET parse_enum_value(PARAMS) {
212 INIT(enum_value);

Callers 1

parse_valueFunction · 0.85

Calls 2

parse_punctFunction · 0.85
parse_valueFunction · 0.85

Tested by

no test coverage detected